File tree Expand file tree Collapse file tree 5 files changed +6
-8
lines changed
.vs/SQLNetworkAnalyzer/v15 Expand file tree Collapse file tree 5 files changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -138,6 +138,9 @@ public string PacketType
138138 {
139139 get
140140 {
141+ if ( isKeepAlive ) return "KA" ;
142+ if ( isRetransmit && payloadLength > 1 ) return "RET" ;
143+
141144 switch ( frameType )
142145 {
143146 case FrameType . ApplicationData : return "AD" ;
@@ -162,12 +165,7 @@ public string PacketType
162165 case FrameType . SSPI : return "SS" ;
163166 case FrameType . TabularResponse : return "DATA" ;
164167 case FrameType . XactMgrRequest : return "TX" ;
165- default :
166- {
167- if ( isKeepAlive ) return "KA" ;
168- if ( isRetransmit && payloadLength > 1 ) return "RET" ;
169- return FormatFlags ( "" ) ;
170- } ;
168+ default : return FormatFlags ( "" ) ;
171169 }
172170 }
173171 }
Original file line number Diff line number Diff line change 3232// You can specify all the values or you can default the Build and Revision Numbers
3333// by using the '*' as shown below:
3434// [assembly: AssemblyVersion("1.0.*")]
35- [ assembly: AssemblyVersion ( "1.5.1974 .0" ) ]
36- [ assembly: AssemblyFileVersion ( "1.5.1974 .0" ) ]
35+ [ assembly: AssemblyVersion ( "1.5.1975 .0" ) ]
36+ [ assembly: AssemblyFileVersion ( "1.5.1975 .0" ) ]
You can’t perform that action at this time.
0 commit comments