6 references to BSTR
Microsoft.Build.Framework (6)
Windows\Win32\Foundation\BSTR.cs (4)
16
/// Initializes a new instance of the <see cref="
BSTR
"/> struct.
18
/// <param name="value">The managed string to convert to a <see cref="
BSTR
"/>.</param>
23
/// Gets a value indicating whether the <see cref="
BSTR
"/> is null.
32
/// Disposing is only safe when the caller disposes the <see cref="
BSTR
"/> in place
Windows\Win32\System\Variant\VARIANT.cs (2)
95
public static explicit operator
BSTR
(VARIANT value) =>
96
value.vt == VT_BSTR ? value.data.bstrVal : ThrowInvalidCast<
BSTR
>();