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

  • Home
  • SEARCH
  • 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 7839027
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T15:17:46+00:00 2026-06-02T15:17:46+00:00

So lately I have been using this method to return a string: string uri

  • 0

So lately I have been using this method to return a string:

string uri = "http://localhost:8000/Service/Student";
XDocument xDoc = XDocument.Load(uri);
var studentcollection = xDoc.Descendants("Student")
    .Select(n => new
    {
      FirstName = n.Element("FirstName").Value,
    })
    .ToList();

And it works fine, but if one of the values from the webservice is a byte[] will this method return that value? If not, how would you combine that method (because im use to it) and return a byte[]?

  • 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-02T15:17:50+00:00Added an answer on June 2, 2026 at 3:17 pm

    Are you saying that one of the elements could return a byte[] or is it really a base 64 encoded string representing a byte[]? If the latter, you can extract the bytes from the value:

    byte[] decoded = Convert.FromBase64String(value);
    

    Full code:

    string uri = "http://localhost:8000/Service/Student";
    XDocument xDoc = XDocument.Load(uri);
    var studentcollection = xDoc.Descendants("Student")
        .Select(Convert.FromBase64String(n.Element("Picture").Value))
        .ToList();
    

    Which will give you a list of byte[] extracted out of the ‘Picture’ element for each student (change code accordingly to create Picture as part of your student instance).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've been using Mercurial for some development lately and have been loving it. I'm
I have been using Jquery alot lately an was wondering if I should use
I have been using the Rails console a fair bit lately and its making
I have been using Visual Studio 2008 quite long but lately I am getting
We have been using javascript hashes a lot lately, and we've been looking for
What java GUI layout manager does everyone use? Lately, I have been using MigLayout
I am currently working on a website and lately have been using GD with
i have been using the spring mvc frameworks lately for a university project. Could
This question is just something that I have been thinking about lately. Can a
Hi, i have been having some problems using JSON data in flash builder lately

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.