diff options
| author | Jake Mannens <jake@asger.xyz> | 2024-02-05 16:02:02 +1100 |
|---|---|---|
| committer | Jake Mannens <jake@asger.xyz> | 2024-02-05 16:02:02 +1100 |
| commit | f7490260d5815b7bbce0d3ea03898b2cc754bdce (patch) | |
| tree | f33ac49cb0017aadbc294b3172248096f91037fc /SecurityIdentifier.cs | |
| parent | 226538299372624c10450e203cefc665fcb439a2 (diff) | |
Added security migration
Diffstat (limited to 'SecurityIdentifier.cs')
| -rw-r--r-- | SecurityIdentifier.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/SecurityIdentifier.cs b/SecurityIdentifier.cs index 608cb75..9f2863b 100644 --- a/SecurityIdentifier.cs +++ b/SecurityIdentifier.cs @@ -170,9 +170,9 @@ public struct SidStruct { .GetHashCode(); } -public class SecurityIdentifierConverter : ValueConverter<SecurityIdentifier, byte[]> { +public class SecurityIdentifierConverter : ValueConverter<SecurityIdentifier, string> { public SecurityIdentifierConverter() : base( - v => v.BinaryForm, + v => v.SddlForm, v => new SecurityIdentifier(v)) {} -}
\ No newline at end of file +} |
