Interface IXmlSerializerMemberInfo
The IXmlSerializerMemberInfo interface
Namespace: ImageVault.Common.Lib.Xml.Serialization
Assembly: ImageVault.Common.dll
Syntax
public interface IXmlSerializerMemberInfo
Properties
Name
Gets the Name of the IXmlSerializerMemberInfo
Declaration
string Name { get; }
Property Value
Type | Description |
---|---|
System.String |
Type
Gets the Type of the IXmlSerializerMemberInfo
Declaration
Type Type { get; }
Property Value
Type | Description |
---|---|
System.Type |
Methods
GetValue(Object)
Gets the value from the member
Declaration
object GetValue(object obj)
Parameters
Type | Name | Description |
---|---|---|
System.Object | obj | The object to get the value from. |
Returns
Type | Description |
---|---|
System.Object | The value retrieved from the object |
SetValue(Object, Object)
Sets the value of the member
Declaration
void SetValue(object obj, object value)
Parameters
Type | Name | Description |
---|---|---|
System.Object | obj | The object to set the value on |
System.Object | value | The value to set |