Created
January 2, 2018 05:22
-
-
Save KennethanCeyer/350990116f9b263e3021bf5049bcb59f to your computer and use it in GitHub Desktop.
direct parameter binding
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[HttpPost] | |
public void TestA( | |
string a, | |
string b | |
) | |
{ | |
Debug.WriteLine($"a: {a}, b: {b}"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
request
output