IDebugConvert Interface

Definition

Defines a set of utility methods that convert data from one type to another. Includes methods that convert values to String objects so that they can be displayed by the debugger.

This API supports the product infrastructure and is not intended to be used directly from your code.

public interface class IDebugConvert
[System.Runtime.InteropServices.ComVisible(true)]
[System.Runtime.InteropServices.Guid("AA51516D-C0F2-49fe-9D38-61D20456904C")]
public interface IDebugConvert
[<System.Runtime.InteropServices.ComVisible(true)>]
[<System.Runtime.InteropServices.Guid("AA51516D-C0F2-49fe-9D38-61D20456904C")>]
type IDebugConvert = interface
Public Interface IDebugConvert
Derived
Attributes

Methods

BooleanToString(Boolean)

This API supports the product infrastructure and is not intended to be used directly from your code.

When implemented in a class, converts the specified Boolean value to a String.

ByteToString(Byte, Int32)

This API supports the product infrastructure and is not intended to be used directly from your code.

When implemented in a class, converts the specified Byte value to a String.

DoubleToDateString(Double)

This API supports the product infrastructure and is not intended to be used directly from your code.

When implemented in a class, creates a string representation of the specified Double. The string representation contains the day of the week, the month, the date, the time, the time zone, and the year.

DoubleToString(Double)

This API supports the product infrastructure and is not intended to be used directly from your code.

When implemented in a class, converts the specified Double value to a String.

GetErrorMessageForHR(Int32, IJSVsaEngine)

This API supports the product infrastructure and is not intended to be used directly from your code.

When implemented in a class, gets an error message that is created from the specified HResult and the CultureInfo of the specified IJSVsaEngine.

GetErrorMessageForHR(Int32, IVsaEngine)

This API supports the product infrastructure and is not intended to be used directly from your code.

When implemented in a class, gets an error message that is created from the specified HResult and the CultureInfo of the specified IVsaEngine.

GetManagedCharObject(UInt16)

This API supports the product infrastructure and is not intended to be used directly from your code.

When implemented in a class, creates a managed object that has the specified primitive Char value.

GetManagedInt64Object(Int64)

This API supports the product infrastructure and is not intended to be used directly from your code.

When implemented in a class, creates a managed object that has the specified primitive Int64 value.

GetManagedObject(Object)

This API supports the product infrastructure and is not intended to be used directly from your code.

When implemented in a class, creates a managed object that has the specified primitive value.

GetManagedUInt64Object(UInt64)

This API supports the product infrastructure and is not intended to be used directly from your code.

When implemented in a class, creates a managed object that has the specified primitive UInt64 value.

Int16ToString(Int16, Int32)

This API supports the product infrastructure and is not intended to be used directly from your code.

When implemented in a class, converts the specified Int16 value to a String.

Int32ToString(Int32, Int32)

This API supports the product infrastructure and is not intended to be used directly from your code.

When implemented in a class, converts the specified Int32 value to a String.

Int64ToString(Int64, Int32)

This API supports the product infrastructure and is not intended to be used directly from your code.

When implemented in a class, converts the specified Int64 value to a String.

RegexpToString(String, Boolean, Boolean, Boolean)

This API supports the product infrastructure and is not intended to be used directly from your code.

When implemented in a class, converts the specified regular expression information to a String.

SByteToString(SByte, Int32)

This API supports the product infrastructure and is not intended to be used directly from your code.

When implemented in a class, converts the specified SByte value to a String.

SingleToString(Single)

This API supports the product infrastructure and is not intended to be used directly from your code.

When implemented in a class, converts the specified Single value to a String.

StringToPrintable(String)

This API supports the product infrastructure and is not intended to be used directly from your code.

When implemented in a class, converts the specified String to a String that contains escape characters for non-printable characters.

ToPrimitive(Object, TypeCode, Boolean)

This API supports the product infrastructure and is not intended to be used directly from your code.

When implemented in a class, converts the specified value to the specified TypeCode, optionally allowing data loss.

UInt16ToString(UInt16, Int32)

This API supports the product infrastructure and is not intended to be used directly from your code.

When implemented in a class, converts the specified UInt16 value to a String.

UInt32ToString(UInt32, Int32)

This API supports the product infrastructure and is not intended to be used directly from your code.

When implemented in a class, converts the specified UInt32 value to a String.

UInt64ToString(UInt64, Int32)

This API supports the product infrastructure and is not intended to be used directly from your code.

When implemented in a class, converts the specified UInt64 value to a String.

Applies to

See also