[Modify] Rename it
This commit is contained in:
parent
a8f3110418
commit
e91c07a980
@ -67,11 +67,11 @@ namespace WebSocketSharp.Net
|
|||||||
private CookieCollection _cookies;
|
private CookieCollection _cookies;
|
||||||
private WebHeaderCollection _headers;
|
private WebHeaderCollection _headers;
|
||||||
private string _httpMethod;
|
private string _httpMethod;
|
||||||
private Guid _identifier;
|
|
||||||
private Stream _inputStream;
|
private Stream _inputStream;
|
||||||
private Version _protocolVersion;
|
private Version _protocolVersion;
|
||||||
private NameValueCollection _queryString;
|
private NameValueCollection _queryString;
|
||||||
private Uri _referer;
|
private Uri _referer;
|
||||||
|
private Guid _requestTraceIdentifier;
|
||||||
private string _uri;
|
private string _uri;
|
||||||
private Uri _url;
|
private Uri _url;
|
||||||
private string[] _userLanguages;
|
private string[] _userLanguages;
|
||||||
@ -98,7 +98,7 @@ namespace WebSocketSharp.Net
|
|||||||
_connection = context.Connection;
|
_connection = context.Connection;
|
||||||
_contentLength = -1;
|
_contentLength = -1;
|
||||||
_headers = new WebHeaderCollection ();
|
_headers = new WebHeaderCollection ();
|
||||||
_identifier = Guid.NewGuid ();
|
_requestTraceIdentifier = Guid.NewGuid ();
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
@ -438,7 +438,7 @@ namespace WebSocketSharp.Net
|
|||||||
/// </value>
|
/// </value>
|
||||||
public Guid RequestTraceIdentifier {
|
public Guid RequestTraceIdentifier {
|
||||||
get {
|
get {
|
||||||
return _identifier;
|
return _requestTraceIdentifier;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user