Skip to content

Instantly share code, notes, and snippets.

@kevinah95
Last active October 17, 2024 01:47
Show Gist options
  • Save kevinah95/8eb21a6556358d379e058a90a3100d61 to your computer and use it in GitHub Desktop.
Save kevinah95/8eb21a6556358d379e058a90a3100d61 to your computer and use it in GitHub Desktop.
Lección 02
using System.Runtime.Serialization;
namespace SoapCore_Demo
{
[DataContract]
public class Author
{
[DataMember]
public int Id { get; set; }
[DataMember]
public string FirstName { get; set; }
[DataMember]
public string LastName { get; set; }
[DataMember]
public string Address { get; set; }
}
}
using System.Diagnostics;
using System.ServiceModel;
using System.Xml.Linq;
namespace SoapCore_Demo
{
[ServiceContract]
public interface IAuthorService
{
[OperationContract]
void MySoapMethod(XElement xml);
}
public class AuthorService : IAuthorService
{
public void MySoapMethod(XElement xml)
{
Trace.WriteLine(xml.ToString());
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment