ResInfo Constructors

Definition

This class, member, or property is internal to the script engine and should not be called from your code.

Overloads

ResInfo(String, Boolean)

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

Initializes a new instance of the ResInfo class with the specified resource information.

ResInfo(String, String, Boolean, Boolean)

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

Initializes a new instance of the ResInfo class with the specified resource information in separate parameters.

ResInfo(String, Boolean)

Initializes a new instance of the ResInfo class with the specified resource information.

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

public:
 ResInfo(System::String ^ resinfo, bool isLinked);
public ResInfo (string resinfo, bool isLinked);
new Microsoft.JScript.Vsa.ResInfo : string * bool -> Microsoft.JScript.Vsa.ResInfo
Public Sub New (resinfo As String, isLinked As Boolean)

Parameters

resinfo
String

Resource information.

isLinked
Boolean

true to indicate the resource is linked; otherwise, false.

Remarks

The resinfo parameter should be in the format <filename>[,<name>[,public|private]].

Applies to

ResInfo(String, String, Boolean, Boolean)

Initializes a new instance of the ResInfo class with the specified resource information in separate parameters.

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

public:
 ResInfo(System::String ^ filename, System::String ^ name, bool isPublic, bool isLinked);
public ResInfo (string filename, string name, bool isPublic, bool isLinked);
new Microsoft.JScript.Vsa.ResInfo : string * string * bool * bool -> Microsoft.JScript.Vsa.ResInfo
Public Sub New (filename As String, name As String, isPublic As Boolean, isLinked As Boolean)

Parameters

filename
String

The file name.

name
String

Specifies a name.

isPublic
Boolean

true to indicate filename is public in the assembly; otherwise, false.

isLinked
Boolean

true to indicate the resource is linked; otherwise, false.

Applies to