MCPcopy Create free account
hub / github.com/PowerShell/DSC / RegistryKey

Class RegistryKey

archive/ntreg/src/registry_key.rs:23–32  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

21/// Represents a registry key including its properties.
22#[derive(Clone)]
23pub struct RegistryKey {
24 pub handle: HANDLE,
25 pub path: String,
26 pub name: String,
27 pub sub_key_count: u32,
28 pub max_key_name_len: u32,
29 pub value_count: u32,
30 pub max_value_name_len: u32,
31 pub max_data_len: u32,
32}
33
34impl RegistryKey {
35 /// Returns a RegistryKey object for a valid existing path.

Callers 3

removeMethod · 0.85
open_regkeyFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected