IResourceCollection Methods
InterfaceMethods1 member
Represents a collection of resources.
Attempts to find a resource by its name.
public interface IResourceCollection{ public virtual bool TryGetByName( string name, out IResource? resource) { // ... }}Parameters
namestringThe name of the resource to find.resourceIResource?When this method returns, contains the resource with the specified name, if found; otherwise, null.Returns
booltrue if a resource with the specified name was found; otherwise, false.Remarks
The resource name comparison is case-insensitive.