Skip to content

Commit

Permalink
Fix DebuggerDisplay attribute property unavailable issue. (#4415)
Browse files Browse the repository at this point in the history
  • Loading branch information
imcarolwang authored Oct 29, 2020
1 parent dee6ae2 commit 8d5ffab
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

namespace System.ServiceModel.Description
{
[DebuggerDisplay("Name={_name}, Namespace={_ns}, ContractType={_contractType}")]
[DebuggerDisplay("Name={_name}, Namespace={_ns}, ContractType={ContractType}")]
public class ContractDescription
{
private XmlName _name;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

namespace System.ServiceModel.Description
{
[DebuggerDisplay("Name={_name}, Action={_action}, DetailType={_detailType}")]
[DebuggerDisplay("Name={_name}, Action={Action}, DetailType={DetailType}")]
public class FaultDescription
{
private XmlName _name;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

namespace System.ServiceModel.Description
{
[DebuggerDisplay("Action={_action}, Direction={_direction}, MessageType={_messageType}")]
[DebuggerDisplay("Action={Action}, Direction={Direction}, MessageType={MessageType}")]
public class MessageDescription
{
private static Type s_typeOfUntypedMessage;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

namespace System.ServiceModel.Description
{
[DebuggerDisplay("Name={_name}, IsInitiating={_isInitiating}, IsTerminating={_isTerminating}")]
[DebuggerDisplay("Name={XmlName}, IsInitiating={IsInitiating}, IsTerminating={IsTerminating}")]
public class OperationDescription
{
internal const string SessionOpenedAction = Channels.WebSocketTransportSettings.ConnectionOpenedAction;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

namespace System.ServiceModel.Description
{
[DebuggerDisplay("Address={_address}")]
[DebuggerDisplay("Address={Address}")]
[DebuggerDisplay("Name={_name}")]
public class ServiceEndpoint
{
Expand Down

0 comments on commit 8d5ffab

Please sign in to comment.