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 8058565
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T09:23:52+00:00 2026-06-05T09:23:52+00:00

I have function Foo($a, $b) { $o = @{} $o.A = $a $o.B =

  • 0

I have

function Foo($a, $b)
{
    $o = @{}
    $o.A = $a
    $o.B = $b
    $post = @{}
    $post.X="x"
    $post.entity =$o
    $newton::SerializeObject($post)
}

then do

foo "a" "b"

I get

Exception calling "SerializeObject" with "1" argument(s): "Self referencing loop detected for property 'Value' with type 'System.Management.Automation.PSParameterizedProperty'. Path 'entity.Members[0]'."

however

function Foo2($o)
{
    $post = @{}
    $post.X="x"
    $post.entity =$o
    $newton::SerializeObject($post)
}

foo2 @{a="a"; b="b"}

works fine. Also

function foo3($a, $b)
{
   $o = @{}
   $o.A = $a
   $o.B = $b
   $newton::SerializeObject($o)
}

foo3 "a" "b"

works but

foo3 "a" 1

fails

The latter can be made to work by doing

 $o.B= [Int32]::Parse($b.Tostring())

Which all seems very odd

powershell v2 on windows 7, json.net 4.4.5

  • 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-05T09:23:54+00:00Added an answer on June 5, 2026 at 9:23 am

    The self referencing loop issue sems to be all about…. the order in which you assign things. The below example works:

    function Foo($a, $b)
    {
        $o = @{}
        $post = @{}
    
        $post.entity =$o
    
        $o.A = $a
        $o.B = $b   
    
        $post.X="x"
    
        [Newtonsoft.Json.JsonConvert]::SerializeObject($post)
    }
    
    Foo "a" "b"
    
    {"entity":{"A":"a","B":"b"},"X":"x"}
    

    If you convert the type before you pass it in then it will keep your foo3 function generic:

    function foo3($a, $b)
    {
       $o = @{}
       $o.A = $a
       $o.B = $b
       [Newtonsoft.Json.JsonConvert]::SerializeObject($o)
    }
    
    
    $var2 = [Int32]::Parse((1).Tostring())
    
    Foo3 "a" $var2
    
    {"A":"a","B":1}
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Suppose you have the following function foo . When I'm running a for loop,
I have a function: var foo=function(){ var ret=false; var data={}; data[blah]=blah; $.ajax({ type: POST,
I have such JavaScript code: <script> function Foo() { alert('Foo'); } $.post('file.php', {}, function(data)
I have a function foo that accepts a Boolean function def foo( f:(_)=>Boolean )
Say I have a function foo: (defun foo (x y &rest args) ...) And
Say I have a function foo that I want to call n times. In
In my script, I have a function foo which basically uses pynotify to notify
I have a ColdFusion function foo which takes three args, and the second two
I have a function void foo() and inside foo I call the function void
Say I have the following function: foo <- function(x, y = min(m)) { m

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.