| File: Reader\ISymUnmanagedConstant.cs | Web Access |
| Project: src\symreader\src\Microsoft.DiaSymReader\Microsoft.DiaSymReader.csproj (Microsoft.DiaSymReader) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the License.txt file in the project root for more information. using System; using System.Runtime.InteropServices; using System.Text; namespace Microsoft.DiaSymReader { [Guid("48B25ED8-5BAD-41bc-9CEE-CD62FABC74E9")] [InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] [ComVisible(false)] [GeneratedWhenPossibleComInterface] public partial interface ISymUnmanagedConstant { [PreserveSig] int GetName( int bufferLength, out int count, [In, Out, MarshalAs(UnmanagedType.LPArray, SizeParamIndex = 0)] char[] name); [PreserveSig] int GetValue([MarshalAs(UnmanagedType.Struct)] out object value); [PreserveSig] int GetSignature( int bufferLength, out int count, [In, Out, MarshalAs(UnmanagedType.LPArray, SizeParamIndex = 0)] byte[] signature); } }