Is it the address (.Address) you are looking for or the name (.Name)?
To get a content by name: WAFContext.Session.GetContent<ContentBase>(name); // name is string
To get a content by address, look at this:
WAFContext.Engine.GetMatchingAddresses(cleanedAddress, true);
Ole