See Also: EntryAttribute Members
You can specify the kind of UIKeyboardType for data entry by setting KeyboardType property.
c# Example
class Login {
[Entry ("Enter your name")]
string Name;
[Entry ("Enter your password")]
[Password]
string Password;
[Entry (Placeholder="Your numeric Pin", KeyboardType=UIKeyboardType.NumberPad]
string Pin;
}