ResXFileRef Class
Represents a link to an external resource.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
| Name | Description | |
|---|---|---|
![]() | ResXFileRef(String^, String^) | Creates a new instance of the ResXFileRef class that references the specified file. |
![]() | ResXFileRef(String^, String^, Encoding^) | Initializes a new instance of the ResXFileRef class that references the specified file. |
| Name | Description | |
|---|---|---|
![]() | FileName | Gets the file name specified in the current ResXFileRef constructor. |
![]() | TextFileEncoding | Gets the encoding specified in the current ResXFileRef constructor. |
![]() | TypeName | Gets the type name specified in the current ResXFileRef constructor. |
| Name | Description | |
|---|---|---|
![]() | Equals(Object^) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | Finalize() | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.(Inherited from Object.) |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | MemberwiseClone() | |
![]() | ToString() | Gets the text representation of the current ResXFileRef object.(Overrides Object::ToString().) |
The ResXFileRef class is used to include references to files in an XML resource (.resx) file. A ResXFileRef object represents a link to an external resource in an XML resource (.resx) file. You add the ResXFileRef object to a .resx file by calling the ResXResourceWriter::AddResource(ResXDataNode^) method.
In a data entry in a .resx file, the type is ResXFileRef, and the value is the path location on disk. When the resource manager deserializes the object, the ResXFileRef performs the I/O to get the file. The following is an example of a .resx file.
<data name="iconclip" type="System.Resources.ResXFileRef, System.Windows.Forms"> <value>lookout.bmp;System.Drawing.Bitmap, System.Drawing</value> </data> <data name="mailbackground" type="System.Resources.ResXFileRef, System.Windows.Forms"> <value>mailbackground.bmp;System.Drawing.Bitmap, System.Drawing</value> </data> <data name="xplogo" type="System.Resources.ResXFileRef, System.Windows.Forms"> <value>xplogo.png;System.Drawing.Bitmap, System.Drawing</value> </data>
To add a ResXFileRef object to a .resx file programmatically, you call the ResXDataNode::ResXDataNode(String^, ResXFileRef^) constructor to instantiate a ResXDataNode object. You then pass this ResXDataNode object to the ResXResourceWriter::AddResource method.
When you compile a .resx file with Resgen.exe (Resource File Generator), the resources specified in the .resx file are embedded in the resulting document resource file.
for full trust for inheritors. This class cannot be inherited by partially trusted code.
for full trust for the immediate caller. This class cannot be used by partially trusted code.
Available since 1.1
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.


