QueryStringConverter.ConvertStringToValue(String, Type) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
クエリ文字列パラメーターを指定した型に変換します。
public:
virtual System::Object ^ ConvertStringToValue(System::String ^ parameter, Type ^ parameterType);
public virtual object ConvertStringToValue (string parameter, Type parameterType);
abstract member ConvertStringToValue : string * Type -> obj
override this.ConvertStringToValue : string * Type -> obj
Public Overridable Function ConvertStringToValue (parameter As String, parameterType As Type) As Object
パラメーター
- parameter
- String
パラメーターと値から構成される文字列形式。
戻り値
変換されるパラメーター。
例外
指定された文字列の形式が不適切です。
例
文字列を指定の型に変換する方法を次のコードに示します。
if (converter.CanConvert(typeof(Int32)))
converter.ConvertStringToValue("123", typeof(Int32));
If (converter.CanConvert(GetType(Int32))) Then
converter.ConvertStringToValue("123", GetType(Int32))
End If
注釈
parameterType
が値型で、パラメーターが null
である場合は、parameterType
の既定値が返されます。