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!

ResourceManager Constructor

Initializes a new instance of the ResourceManager class.

Overload List

Initializes a new instance of the ResourceManager class.

[Visual Basic] Overloads Protected Sub New()
[C#] protected ResourceManager();
[C++] protected: ResourceManager();
[JScript] protected function ResourceManager();

Creates a ResourceManager for the resources whose names begin with the specified root name in the specified directory.

[Visual Basic] Overloads Public Sub New(String, String, Type)
[C#] public ResourceManager(String, String, Type);
[C++] public: ResourceManager(String*, String*, Type);
[JScript] public function ResourceManager(String, String, Type);

Creates a ResourceManager for resources whose names begin with the specified root name in the directory of the specified type's module.

[Visual Basic] Overloads Public Sub New(String, Type, Type)
[C#] public ResourceManager(String, Type, Type);
[C++] public: ResourceManager(String*, Type, Type);
[JScript] public function ResourceManager(String, Type, Type);

Creates a ResourceManager for looking up resources beginning with the specified root name using the Assembly manifest.

[Visual Basic] Overloads Public Sub New(String, Assembly, Type, Boolean)
[C#] public ResourceManager(String, Assembly, Type, bool);
[C++] public: ResourceManager(String*, Assembly, Type, bool);
[JScript] public function ResourceManager(String, Assembly, Type, Boolean);

Creates a ResourceManager for looking up resources beginning with the specified root name using the manifest of a specified type's Assembly.

[Visual Basic] Overloads Public Sub New(String, Type, Type, Boolean)
[C#] public ResourceManager(String, Type, Type, bool);
[C++] public: ResourceManager(String*, Type, Type, bool);
[JScript] public function ResourceManager(String, Type, Type, Boolean);

See Also

ResourceManager Class | ResourceManager Members | System.Resources Namespace