1 write to Value
Microsoft.AspNetCore.Server.IIS (1)
Windows.Win32.PWSTR.g.cs (1)
29
internal PWSTR(char* value) => this.
Value
= value;
11 references to Value
Microsoft.AspNetCore.Server.IIS (11)
Windows.Win32.PWSTR.g.cs (11)
31
public static implicit operator char*(PWSTR value) => value.
Value
;
35
public static bool operator ==(PWSTR left, PWSTR right) => left.
Value
== right.
Value
;
39
public bool Equals(PWSTR other) => this.
Value
== other.
Value
;
43
public override int GetHashCode() => unchecked((int)this.
Value
);
47
public override string ToString() => new PCWSTR(this.
Value
).ToString();
49
public static implicit operator PCWSTR(PWSTR value) => new PCWSTR(value.
Value
);
53
internal int Length => new PCWSTR(this.
Value
).Length;
59
internal Span<char> AsSpan() => this.
Value
is null ? default(Span<char>) : new Span<char>(this.
Value
, this.Length);