Share via


VSProjectNode.extract Method

Definition

Overloads

extract()

Extracts the whole project to disk.

extract(String)
extract(String, Boolean)

extract()

Extracts the whole project to disk.

public:
 virtual cli::array <System::Object ^> ^ extract();
public virtual object[] extract ();
abstract member extract : unit -> obj[]
override this.extract : unit -> obj[]
Public Overridable Function extract () As Object()

Returns

Object[]

A list of paths where the project was extracted.

Applies to

extract(String)

public:
 virtual cli::array <System::Object ^> ^ extract(System::String ^ text1);
public virtual object[] extract (string text1);
abstract member extract : string -> obj[]
override this.extract : string -> obj[]
Public Overridable Function extract (text1 As String) As Object()

Parameters

text1
String

Returns

Object[]

Applies to

extract(String, Boolean)

public:
 virtual cli::array <System::Object ^> ^ extract(System::String ^ _path, bool _extractReferenced);
public virtual object[] extract (string _path, bool _extractReferenced);
abstract member extract : string * bool -> obj[]
override this.extract : string * bool -> obj[]
Public Overridable Function extract (_path As String, _extractReferenced As Boolean) As Object()

Parameters

_path
String

A Boolean value that determines whether to extract the referenced projects.

_extractReferenced
Boolean

A Boolean value that determines whether to extract the referenced projects.

Returns

Object[]

Applies to