本文整理汇总了C#中Behaviac.Design.Attributes.DesignerPropertyInfo.GetExportValue方法的典型用法代码示例。如果您正苦于以下问题:C# DesignerPropertyInfo.GetExportValue方法的具体用法?C# DesignerPropertyInfo.GetExportValue怎么用?C# DesignerPropertyInfo.GetExportValue使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Behaviac.Design.Attributes.DesignerPropertyInfo
的用法示例。
在下文中一共展示了DesignerPropertyInfo.GetExportValue方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: WritePropertyValue
static private void WritePropertyValue(BsonSerializer file, DesignerPropertyInfo property, object o) {
string str = property.GetExportValue(o);
string[] tokens = str.Split(' ');
string valueString = null;
if (tokens.Length == 3 && tokens[0] == "const") {
valueString = tokens[2];
} else if (tokens.Length == 1) {
valueString = str;
}
bool bW = false;
if (valueString != null) {
object obj = property.Property.GetValue(o, null);
object v = null;
Type valueType = null;
VariableDef varType = obj as VariableDef;
if (varType != null) {
valueType = varType.GetValueType();
} else {
RightValueDef rvarType = obj as RightValueDef;
if (rvarType != null) {
if (rvarType.Method == null) {
valueType = rvarType.ValueType;
}
} else {
MethodDef mType = obj as MethodDef;
if (mType != null) {
Debug.Check(true);
} else {
valueType = obj.GetType();
}
}
}
if (valueType != null && Plugin.InvokeTypeParser(null, valueType, valueString, (object value) => v = value, null))
{
file.WriteAttribute(property.Property.Name, v);
bW = true;
}
}
if (!bW) {
file.WriteAttributeString(property.Property.Name, str);
}
}
示例2: WritePropertyString
static private void WritePropertyString(BsonSerializer file, DesignerPropertyInfo property, object o) {
string str = property.GetExportValue(o);
file.WriteAttributeString(property.Property.Name, str);
}