WebInvoke
是包括GET在内的任何吉大港定居地。 如果你与教育、青年和体育部一起使用,你必须遵循所有教育、技术和革新方面的限制,操作参数必须简明扼要,以了解世界投资协会的路径论点。
WebGet
is only for GET verb and IMHO, it ismain to show differences between GET and other verbs (GET should be idempotent, GET don t have body, et al.)
最重要的方法。 使用这些特性的网络是内部的<代码>。 GetWebMethod:
internal static string GetWebMethod(OperationDescription od)
{
WebGetAttribute wga = od.Behaviors.Find<WebGetAttribute>();
WebInvokeAttribute wia = od.Behaviors.Find<WebInvokeAttribute>();
EnsureOk(wga, wia, od);
if (wga != null)
{
return "GET";
}
if (wia == null)
{
return "POST";
}
return (wia.Method ?? "POST");
}
As you can see GET method for WebInvoke
is normally processed.