Class ResXDataNode
Inheritance
System.Object
ResXDataNode
Namespace: System.Resources.NetStandard
Assembly: PnP.Framework.dll
Syntax
public sealed class ResXDataNode : ISerializable
Constructors
ResXDataNode(String, Object)
Declaration
public ResXDataNode(string name, object value)
Parameters
System.
|
System.
|
ResXDataNode(String, Object, Func<Type, String>)
Declaration
public ResXDataNode(string name, object value, Func<Type, string> typeNameConverter)
Parameters
System.
|
System.
|
Func<Type, System.
|
ResXDataNode(String, ResXFileRef)
Declaration
public ResXDataNode(string name, ResXFileRef fileRef)
Parameters
System.
|
Res
|
ResXDataNode(String, ResXFileRef, Func<Type, String>)
Declaration
public ResXDataNode(string name, ResXFileRef fileRef, Func<Type, string> typeNameConverter)
Parameters
System.
|
Res
|
Func<Type, System.
|
Properties
Comment
Declaration
public string Comment { get; set; }
Property Value
System.
|
FileRef
Name
Declaration
public string Name { get; set; }
Property Value
System.
|
Methods
GetNodePosition()
Might return the position in the resx file of the current node, if known otherwise, will return Point(0,0) since point is a struct
Declaration
public Point GetNodePosition()
Returns
Point
|
GetValue(AssemblyName[])
Get the value contained in this datanode
Declaration
public object GetValue(AssemblyName[] names)
Parameters
Assembly
|
Returns
System.
|
GetValue(ITypeResolutionService)
Get the value contained in this datanode
Declaration
public object GetValue(ITypeResolutionService typeResolver)
Parameters
IType
|
Returns
System.
|
GetValueTypeName(AssemblyName[])
Get the FQ type name for this datanode
Declaration
public string GetValueTypeName(AssemblyName[] names)
Parameters
Assembly
|
Returns
System.
|
GetValueTypeName(ITypeResolutionService)
Get the FQ type name for this datanode. We return typeof(object) for ResXNullRef
Declaration
public string GetValueTypeName(ITypeResolutionService typeResolver)
Parameters
IType
|
Returns
System.
|