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!

Assembly.GetFile

Gets a FileStream for the specified file in the file table of the manifest of this assembly.

[Visual Basic]
Overridable Public Function GetFile( _
   ByVal name As String _
) As FileStream
[C#]
public virtual FileStream GetFile(
   string name
);
[C++]
public: virtual FileStream* GetFile(
   String* name
);
[JScript]
public function GetFile(
   name : String
) : FileStream;

Parameters

name
The name of the specified file.

Return Value

A FileStream for the specified file. a null reference (in Visual Basic Nothing) is returned if the file is not found.

Remarks

name should not include the path to the file.

See Also

Assembly Class | Assembly Members | System.Reflection Namespace