Task.TaskResources Property
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.
Gets or sets the task's culture-specific resources. Derived classes should register their resources either during construction, or via this property, if they have localized strings.
protected:
property System::Resources::ResourceManager ^ TaskResources { System::Resources::ResourceManager ^ get(); void set(System::Resources::ResourceManager ^ value); };
protected System.Resources.ResourceManager TaskResources { get; set; }
member this.TaskResources : System.Resources.ResourceManager with get, set
Protected Property TaskResources As ResourceManager
Property Value
The task's resources (can be null).
Remarks
If derived classes have localized strings, then they should register their resources either during construction, or through this property.