NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

AppDomain.AppendPrivatePath

Appends the specified name of the directory to the private path.

[Visual Basic]
Public Sub AppendPrivatePath( _
   ByVal path As String _
)
[C#]
public void AppendPrivatePath(
   string path
);
[C++]
public: void AppendPrivatePath(
   String* path
);
[JScript]
public function AppendPrivatePath(
   path : String
);

Parameters

path
The name of the directory to be appended to the private path.

Remarks

The private path, or relative search path, is the path relative to the base directory where the assembly resolver probes for private assemblies.

See Also

AppDomain Class | AppDomain Members | System Namespace