ToString() public method

Get the value of the key
public ToString ( ) : string
return string
コード例 #1
0
ファイル: Response.cs プロジェクト: simudream/selenium
 /// <summary>
 /// Initializes a new instance of the Response class
 /// </summary>
 /// <param name="sessionId">Session ID in use</param>
 public Response(SessionId sessionId)
 {
     if (sessionId != null)
     {
         this.responseSessionId = sessionId.ToString();
     }
 }
コード例 #2
0
ファイル: Response.cs プロジェクト: Zekom/selenium
 /// <summary>
 /// Initializes a new instance of the Response class
 /// </summary>
 /// <param name="sessionId">Session ID in use</param>
 public Response(SessionId sessionId)
 {
     if (sessionId != null)
     {
         this.responseSessionId = sessionId.ToString();
     }
 }