从IParameterInspector(WCF)访问上下文信息

时间:2011-01-11 15:37:56

标签: c# wcf .net-3.5

我尝试记录WCF服务的所有请求的所有参数。为此我使用了“IParameterInspector”并实现了目前为止。

public class ParameterInspector_for_RequestLogging : IParameterInspector
{
    #region IParameterInspector Members

    public void AfterCall(string operationName, object[] outputs, object returnValue, object correlationState) {
            //Note: correlationState contains an object with contains the inputValues
            //...
            log.WriteEntry(
                new LogData(
                    String.Format("          Req={0}, Time: {1}ms, Input-Parameter: '{2}', Output-Parameter: '{3}', ReturnValue: '{4}'"
                        , operationName
                        , Environment.TickCount - correlationStateData.RequestStartAt
                        , String.Join("','", inputParameter.ToArray())
                        , String.Join("','", outputParameter.ToArray())
                        , returnValue.ToString()
                        )
                    )
                );

    }
}

带输出:

Req=ABC, Time: 500ms, Input-Parameter: '123,ABC,zzz,55', Output-Parameter: '0', ReturnValue: '0'"

所以我有两个问题。 1.我如何找到输入和输出参数的正确名称。 2.如何粘贴上下文信息/如何访问上下文信息。 (如用户名)

我尝试产生以下输出:

User: CurrentUser (UserNumber) - Req=ABC, Time: 500ms
  , Input-Parameter: '<int32>para1: 123, <string>Para2: ABC
    ,<string>Para3: zzz, <ref byte>Para4: 55'
  , Output-Parameter: '<byte> 0', ReturnValue: '<Int64> 0'"

1 个答案:

答案 0 :(得分:0)

尝试查看System.ServiceModel.OperationContext

我能够在IParameterInspector内使用当前用户 System.ServiceModel.OperationContext.Current.ServiceSecurityContext.PrimaryIdentity