Microsoft.CSharp.RuntimeBinder.Semantics.ExprFactory.CreateUserLogOpError C# (CSharp) Method

CreateUserLogOpError() public method

public CreateUserLogOpError ( CType pType, EXPR pCallTF, Microsoft.CSharp.RuntimeBinder.Semantics.EXPRCALL pCallOp ) : Microsoft.CSharp.RuntimeBinder.Semantics.EXPRUSERLOGOP
pType CType
pCallTF EXPR
pCallOp Microsoft.CSharp.RuntimeBinder.Semantics.EXPRCALL
return Microsoft.CSharp.RuntimeBinder.Semantics.EXPRUSERLOGOP
        public EXPRUSERLOGOP CreateUserLogOpError(CType pType, EXPR pCallTF, EXPRCALL pCallOp)
        {
            EXPRUSERLOGOP rval = CreateUserLogOp(pType, pCallTF, pCallOp);
            rval.SetError();
            return rval;
        }