25

Web サービス (WCF) を介して提供されるクラス オブジェクトがあります。このクラスには、String 型のプロパティといくつかのカスタム クラス型があります。

カスタム クラス タイプのプロパティのプロパティ名とプロパティ名を取得するにはどうすればよいですか。

GetProperies() を使用してリフレクションを試みましたが、失敗しました。プロパティの型が文字列型の場合、GetFields() である程度成功しました。カスタム型のプロパティのプロパティも取得したいと考えています。

これが私のコードです。

public static string ToClassString(this object value)
{
    if (value == null)
        return null;
    var builder = new StringBuilder();
    builder.Append(value.GetType().Name + "{ ");
    foreach (var prop in value.GetType().GetFields(
BindingFlags.Public
| BindingFlags.Static | BindingFlags.Instance | BindingFlags.FlattenHierarchy | BindingFlags.GetProperty))
    {
        builder.Append("{ ");
        builder.Append(prop.Name + " , ");
        switch (prop.FieldType.Namespace)
        {
            case "System":
                builder.Append(prop.GetValue(value) + " }");
                break;
            default:
                builder.Append(prop.GetValue(value).ToClassString() + " }");
                break;
        }
    }
    builder.Append("}");
    return builder.ToString();
}

私は次のように出力を得ました

NotifyClass{ { UniqueId , 16175 }{ NodeInfo , NodeInfo{ } }{ EventType , SAPDELETE }}

インスタンスを文字列に変換したいクラスは次のとおりです

[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")]
[System.ServiceModel.MessageContractAttribute(WrapperName="NotifyReq", WrapperNamespace="wrapper:namespace", IsWrapped=true)]
public partial class Notify
{

    [System.ServiceModel.MessageBodyMemberAttribute(Namespace="custom:namespace", Order=0)]
    public int UniqueId;

    [System.ServiceModel.MessageBodyMemberAttribute(Namespace="custom:namespace", Order=1)]
    public eDMRMService.NodeInfo NodeInfo;

    [System.ServiceModel.MessageBodyMemberAttribute(Namespace="custom:namespace", Order=2)]
    public string EventType;

    public Notify()
    {
    }

    public Notify(int UniqueId, eDMRMService.NodeInfo NodeInfo, string EventType)
    {
        this.UniqueId = UniqueId;
        this.NodeInfo = NodeInfo;
        this.EventType = EventType;
    }
}        
4

1 に答える 1

84

車輪を再発明する必要はありません。Json.Netを使用する

string s = JsonConvert.SerializeObject(yourObject);

それだけです。

JavaScriptSerializer を使用することもできます

string s = new JavaScriptSerializer().Serialize(yourObject);
于 2013-04-17T13:02:20.863 に答える