Effect.Resolve(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns an Effect for the specified name, which is of the form ResolutionGroupName.ExportEffect
.
public:
static Microsoft::Maui::Controls::Effect ^ Resolve(System::String ^ name);
public static Microsoft.Maui.Controls.Effect Resolve (string name);
static member Resolve : string -> Microsoft.Maui.Controls.Effect
Public Shared Function Resolve (name As String) As Effect
Parameters
- name
- String
The name of the effect to get.
Returns
The uniquely identified effect.
Remarks
The Resolve(String) method takes a string that is the concatenation of a resolution group name (supplied to ResolutionGroupNameAttribute), '.'
, and the unique name that was supplied to ExportEffectAttribute, and returns the specified effect.