Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8647777
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T13:09:13+00:00 2026-06-12T13:09:13+00:00

I found the post titled MOQ: Returning value that was passed into a method

  • 0

I found the post titled MOQ: Returning value that was passed into a method which was quite helpful in that I can get one of the values passed in to provide as a return value.

The issue I am faced with is that I need to convert the value (a string) to an IEnumerable as the one and only item in the enumeration, and I am getting tripped up on the syntax for doing so.

Here is what I have so far:

var aggregator = new Mock<IUrlAggregator>();
        aggregator
            .Setup(x => x.ProcessUrl(It.IsAny<IUrlFileLineInfo>()))
            .Returns((IUrlFileLineInfo x) => x.Url); <-- Need to return IEnumerable<string> here, not string

The ProcessUrl signature looks like this:

IEnumerable<string> ProcessUrl(IUrlFileLineInfo urlInfo);

And the IUrlFileLineInfo interface:

public interface IUrlFileLineInfo
{
    string Url { get; set; }
    string Mode { get; set; }
}

So how can I convert the string value to an IEnumerable within the context of a lamba expression (through the .Returns() method)?

Update

This is what I ended up with. Thanks for the help. Hopefully this will help others who are new to lambdas.

var aggregator = new Mock<IUrlAggregator>();
        aggregator
            .Setup(x => x.ProcessUrl(It.IsAny<IUrlFileLineInfo>()))
            .Returns((IUrlFileLineInfo x) => new List<string>() { x.Url });
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-12T13:09:15+00:00Added an answer on June 12, 2026 at 1:09 pm

    What about returning an array with the one item x.Url ?

    var aggregator = new Mock<IUrlAggregator>();
            aggregator
                .Setup(x => x.ProcessUrl(It.IsAny<IUrlFileLineInfo>()))
                .Returns((IUrlFileLineInfo x) => new [] { x.Url });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I found this post that shows how to pass multiple check box selections to
I recently found this post . It basically says that Eclipse has a modified
Morning, simple stupid question. I have found post with similar issues but after reading
I found this post useful and important to share, so if anybody has problems
I found this post: What's the Best Way to Shuffle an NSMutableArray? And as
I found this post on Crystal Reports Cutting Off Text in PDF , but
I haven't found similiar post so I'm asking this. Let's say I defined somewhere
Im very new in C++ I have found this post http://msdn.microsoft.com/en-us/magazine/cc163486.aspx and trying to
I've done a bit of searching around and found this post ... But i'm
I have set a property across threads before and I found this post Cross-thread

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.