Since you're increasing the size of the source texels relative to the size of screen pixels beyond a 1:1 mapping between them, there isn't any additional detail to use. The best that the GPU can do is to interpolate between adjacent texels in the texture to create the new screen pixels required. If you want more detail, you'll need a higher resolution source image for your texture.
If you'd rather have a 'blocky' rendering of your magnified texture, you can turn off the interpolation by adjusting the sampler state for the appropriate texture stage. You want to change the SamplerState.MagFilter to TextureFilter.Point.