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

Gets the value of the specified resource.

Overload List

Gets the value of the specified resource. The resource that is returned is localized for the specified culture. If the resource has not been localized for that culture, the resource that is returned is localized for a "best match" (this is accomplished via the culture's Parent property). Otherwise, a a null reference (in Visual Basic Nothing) reference is returned.

[Visual Basic] Overloads Overridable Public Function GetString(String, CultureInfo) As String
[C#] public virtual string GetString(String, CultureInfo);
[C++] public: virtual String* GetString(String*, CultureInfo);
[JScript] public function GetString(String, CultureInfo) : String;

Returns the value of the specified resource. The resource that is returned is localized for the culture determined by the current cultural settings of the current Thread (this is accomplished via the culture's CurrentUICulture property). If the resource has not been localized for that culture, the resource that is returned is localized for a "best match" (this is accomplished via the Parent property). Otherwise, a a null reference (Nothing) reference is returned.

[Visual Basic] Overloads Overridable Public Function GetString(String) As String
[C#] public virtual string GetString(String);
[C++] public: virtual String* GetString(String*);
[JScript] public function GetString(String) : String;

See Also

ResourceManager Class | ResourceManager Members | System.Resources Namespace