Windows-powershell / PowerShell-master /src /Microsoft.PowerShell.ConsoleHost /WindowsTaskbarJumpList /PropVariant.cs
| // Copyright (c) Microsoft Corporation. | |
| // Licensed under the MIT License. | |
| using System; | |
| using System.Runtime.InteropServices; | |
| namespace Microsoft.PowerShell | |
| { | |
| /// <summary> | |
| /// Represents the OLE struct PROPVARIANT. | |
| /// This class is intended for internal use only. | |
| /// </summary> | |
| /// <remarks> | |
| /// Originally sourced from https://blogs.msdn.com/adamroot/pages/interop-with-propvariants-in-net.aspx | |
| /// and modified to add ability to set values | |
| /// </remarks> | |
| [] | |
| internal sealed class PropVariant : IDisposable | |
| { | |
| // This is actually a VarEnum value, but the VarEnum type requires 4 bytes instead of the expected 2. | |
| [] | |
| private readonly ushort _valueType; | |
| [] | |
| private readonly IntPtr _ptr; | |
| /// <summary> | |
| /// Set a string value. | |
| /// </summary> | |
| internal PropVariant(string value) | |
| { | |
| if (value == null) | |
| { | |
| throw new ArgumentException("PropVariantNullString", nameof(value)); | |
| } | |
| _valueType = (ushort)VarEnum.VT_LPWSTR; | |
| _ptr = Marshal.StringToCoTaskMemUni(value); | |
| } | |
| /// <summary> | |
| /// Disposes the object, calls the clear function. | |
| /// </summary> | |
| public void Dispose() | |
| { | |
| PropVariantNativeMethods.PropVariantClear(this); | |
| GC.SuppressFinalize(this); | |
| } | |
| /// <summary> | |
| /// Finalizes an instance of the <see cref="PropVariant"/> class. | |
| /// </summary> | |
| ~PropVariant() | |
| { | |
| Dispose(); | |
| } | |
| private static class PropVariantNativeMethods | |
| { | |
| [] | |
| internal static extern void PropVariantClear([In, Out] PropVariant pvar); | |
| } | |
| } | |
| } | |