1 instantiation of PWSTR
Microsoft.VisualStudio.Extensibility.Testing.Xunit (1)
Windows.Win32.PWSTR.g.cs (1)
32
public static implicit operator PWSTR(char* value) => new
PWSTR
(value);
24 references to PWSTR
Microsoft.VisualStudio.Extensibility.Testing.Xunit (24)
src\VisualStudio\IntegrationTest\Harness\XUnitShared\Harness\IntegrationHelper.cs (1)
70
moniker.GetDisplayName(bindContext, null, out
var
fullDisplayName);
Windows.Win32.IBindCtx.g.cs (3)
93
void RegisterObjectParam(winmdroot.Foundation.
PWSTR
pszKey, [MarshalAs(UnmanagedType.IUnknown)] object punk);
103
void GetObjectParam(winmdroot.Foundation.
PWSTR
pszKey, [MarshalAs(UnmanagedType.IUnknown)] out object ppunk);
124
void RevokeObjectParam(winmdroot.Foundation.
PWSTR
pszKey);
Windows.Win32.IEnumString.g.cs (1)
37
unsafe winmdroot.Foundation.HRESULT Next(uint celt, winmdroot.Foundation.
PWSTR
* rgelt, [Optional] uint* pceltFetched);
Windows.Win32.IMoniker.g.cs (2)
224
unsafe void GetDisplayName(winmdroot.System.Com.IBindCtx pbc, winmdroot.System.Com.IMoniker pmkToLeft, winmdroot.Foundation.
PWSTR
* ppszDisplayName);
241
void ParseDisplayName(winmdroot.System.Com.IBindCtx pbc, winmdroot.System.Com.IMoniker pmkToLeft, winmdroot.Foundation.
PWSTR
pszDisplayName, out uint pchEaten, out winmdroot.System.Com.IMoniker ppmkOut);
Windows.Win32.PWSTR.g.cs (10)
24
: IEquatable<
PWSTR
>
30
public static implicit operator char*(
PWSTR
value) => value.Value;
32
public static implicit operator
PWSTR
(char* value) => new PWSTR(value);
34
public static bool operator ==(
PWSTR
left,
PWSTR
right) => left.Value == right.Value;
36
public static bool operator !=(
PWSTR
left,
PWSTR
right) => !(left == right);
38
public bool Equals(
PWSTR
other) => this.Value == other.Value;
40
public override bool Equals(object obj) => obj is
PWSTR
other && this.Equals(other);
48
public static implicit operator PCWSTR(
PWSTR
value) => new PCWSTR(value.Value);
Windows.Win32.STATSTG.g.cs (1)
32
internal winmdroot.Foundation.
PWSTR
pwcsName;
Windows.Win32.System_Com_IEnumString_Extensions.g.cs (3)
22
/// <inheritdoc cref="winmdroot.System.Com.IEnumString.Next(uint, winmdroot.Foundation.
PWSTR
*, uint*)"/>
23
internal static unsafe winmdroot.Foundation.HRESULT Next(this winmdroot.System.Com.IEnumString @this, Span<winmdroot.Foundation.
PWSTR
> rgelt, uint* pceltFetched)
25
fixed (winmdroot.Foundation.
PWSTR
* rgeltLocal = rgelt)
Windows.Win32.System_Com_IMoniker_Extensions.g.cs (3)
58
/// <inheritdoc cref="winmdroot.System.Com.IMoniker.GetDisplayName(winmdroot.System.Com.IBindCtx, winmdroot.System.Com.IMoniker, winmdroot.Foundation.
PWSTR
*)"/>
59
internal static unsafe void GetDisplayName(this winmdroot.System.Com.IMoniker @this, winmdroot.System.Com.IBindCtx pbc, winmdroot.System.Com.IMoniker pmkToLeft, out winmdroot.Foundation.
PWSTR
ppszDisplayName)
61
fixed (winmdroot.Foundation.
PWSTR
* ppszDisplayNameLocal = &ppszDisplayName)