Jump to content

Recommended Posts

Posted

Boa tarde pessoal.

Estou a fazer um programa com PUT Request.

Este é o código:

public Person UpdatePerson(string id, Person updatePerson)
	{
		Person p = objPerson.FirstOrDefault(e => e.ID.Equals(id));
		p.Name = updatePerson.Name;
		p.Password = updatePerson.Password;
		return p;
	}

O problema é que as variáveis updatePerson.Name e updatePerson.Password vêm com valor NULL.

Podem-me ajudar?

Obrigado.

Posted

noutro ficheiro mas estão interligados

nesse ficheiro tem o seguite codigo:

//PUT Operation

[OperationContract]

[WebInvoke(UriTemplate = "{id}", Method = "PUT")]

Person UpdatePerson(string id, Person updatePerson);

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site you accept our Terms of Use and Privacy Policy. We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.