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.AppendSharedPath

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

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

Parameters

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

Remarks

The shared path is the path relative to the base directory where the assembly resolver probes for shared assemblies. Shared assemblies are published assemblies. Published assemblies need not be deployed in the same directory structure as the application.

See Also

AppDomain Class | AppDomain Members | System Namespace