以下のような安らかなWebサービスを作成しました
運営契約
[WebInvoke(Method = "POST", RequestFormat = WebMessageFormat.Json, BodyStyle = WebMessageBodyStyle.Wrapped,ResponseFormat = WebMessageFormat.Json, UriTemplate = "/PushNotification")]
[OperationContract]
void PushNotification(MailInformation mailInformations);
MailInformation クラス
[DataContract]
public class MailInformation
{
[DataMember]
public List<string> To { get; set; }
[DataMember]
public string SenderEmail { get; set; }
[DataMember]
public string Subject { get; set; }
}
HttpWebrequest を使用してこのサービスを呼び出すにはどうすればよいですか?
私のサービスのURL
localhost/Chat/ChatService.svc/PushNotification