UriConverterCreateNonNullable Method
Namespace: FolkerKinzel.CsvTools.Mappings.TypeConvertersAssembly: FolkerKinzel.CsvTools.Mappings (in FolkerKinzel.CsvTools.Mappings.dll) Version: 1.1.0+1263e8243dc2cd78095f678f813d7d9c52ea4315
public static TypeConverter<Uri> CreateNonNullable(
Uri defaultValue,
UriKind uriKind = UriKind.RelativeOrAbsolute,
bool throwing = true
)
Public Shared Function CreateNonNullable (
defaultValue As Uri,
Optional uriKind As UriKind = UriKind.RelativeOrAbsolute,
Optional throwing As Boolean = true
) As TypeConverter(Of Uri)
public:
static TypeConverter<Uri^>^ CreateNonNullable(
Uri^ defaultValue,
UriKind uriKind = UriKind::RelativeOrAbsolute,
bool throwing = true
)
static member CreateNonNullable :
defaultValue : Uri *
?uriKind : UriKind *
?throwing : bool
(* Defaults:
let _uriKind = defaultArg uriKind UriKind.RelativeOrAbsolute
let _throwing = defaultArg throwing true
*)
-> TypeConverter<Uri>
- defaultValue Uri
- The value of DefaultValue. The
defaultValue must not be null and has to match the requirements of
uriKind.
- uriKind UriKind (Optional)
- The type of the Uri.
- throwing Boolean (Optional)
- Sets the value of the Throwing property.
TypeConverterUriThe newly created
TypeConverter<Uri>
instance.