COMMemberInfo Interface

Definition

Defines methods that enable JScript to communicate with an external COM member. This interface is used by an external COM implementation to expose its objects to JScript because JScript requires a managed MemberInfo to bind to an external object.

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

public interface class COMMemberInfo
[System.Runtime.InteropServices.ComVisible(true)]
[System.Runtime.InteropServices.Guid("84BCEB62-16EB-4e1c-975C-FCB40D331043")]
public interface COMMemberInfo
[<System.Runtime.InteropServices.ComVisible(true)>]
[<System.Runtime.InteropServices.Guid("84BCEB62-16EB-4e1c-975C-FCB40D331043")>]
type COMMemberInfo = interface
Public Interface COMMemberInfo
Attributes

Methods

Call(BindingFlags, Binder, Object[], CultureInfo)

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

When implemented in a class, enables JScript to call an external COM member. Uses the specified binding information.

GetValue(BindingFlags, Binder, Object[], CultureInfo)

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

When implemented in a class, enables JScript to get the value of an external COM member using the specified binding information.

SetValue(Object, BindingFlags, Binder, Object[], CultureInfo)

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

When implemented in a class, enables JScript to set the value of an external COM member to the specified new value, using the specified binding information.

Applies to

See also