IExpandoResourceSetGetObject Method
Searches for a resource object with the specified name.
Namespace: KGySoft.ResourcesAssembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 10.0.0
Object? GetObject(
string name,
bool ignoreCase = false
)
Function GetObject (
name As String,
Optional ignoreCase As Boolean = false
) As Object
Object^ GetObject(
String^ name,
bool ignoreCase = false
)
abstract GetObject :
name : string *
?ignoreCase : bool
(* Defaults:
let _ignoreCase = defaultArg ignoreCase false
*)
-> Object
- name String
- Name of the resource to search for.
- ignoreCase Boolean (Optional)
- Indicates whether the case of the specified name should be ignored.
Object
The requested resource, or when
SafeMode is
and the resource is found in a .resx source, a
ResXDataNode instance
from which the resource can be obtained. If the requested
name cannot be found,
is returned.