0
只有當null作爲參數傳遞時,是否可以緩存函數輸出? 事情是這樣的:ASP.NET web服務緩存
[WebMethod(CacheDuration = 360, NullOnly = true)]
public SomeClass MyMethod(MyClass whatever)
{
//do something...
return something;
}
所以當任何== NULL函數返回緩存的輸出,而當它不爲null,則沒有緩存它生成的輸出。