How to use the yield instruction with WWW class

like

private WWW download;

void Start()
{
    download = new WWW (url);

    //here, in JS we can use "yield download;" but what I should use in C#
}
WWW www = new WWW("http://www");
yield return www;

Thanks!shaun