You've already forked linux-packaging-mono
Imported Upstream version 4.0.0~alpha1
Former-commit-id: 806294f5ded97629b74c85c09952f2a74fe182d9
This commit is contained in:
38
external/referencesource/System.ServiceModel/System/ServiceModel/FaultCodeConstants.cs
vendored
Normal file
38
external/referencesource/System.ServiceModel/System/ServiceModel/FaultCodeConstants.cs
vendored
Normal file
@ -0,0 +1,38 @@
|
||||
//------------------------------------------------------------
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
//------------------------------------------------------------
|
||||
|
||||
namespace System.ServiceModel
|
||||
{
|
||||
class FaultCodeConstants
|
||||
{
|
||||
public static class Namespaces
|
||||
{
|
||||
public const string NetDispatch = "http://schemas.microsoft.com/net/2005/12/windowscommunicationfoundation/dispatcher";
|
||||
public const string Transactions = "http://schemas.microsoft.com/net/2005/12/windowscommunicationfoundation/transactions";
|
||||
}
|
||||
|
||||
public static class Codes
|
||||
{
|
||||
public const string DeserializationFailed = "DeserializationFailed";
|
||||
public const string SessionTerminated = "SessionTerminated";
|
||||
public const string InternalServiceFault = "InternalServiceFault";
|
||||
|
||||
// 'Transactions' feature fault codes
|
||||
public const string TransactionHeaderMalformed = "TransactionHeaderMalformed";
|
||||
public const string TransactionHeaderMissing = "TransactionHeaderMissing";
|
||||
public const string TransactionUnmarshalingFailed = "TransactionUnmarshalingFailed";
|
||||
public const string TransactionIsolationLevelMismatch = "TransactionIsolationLevelMismatch";
|
||||
public const string TransactionAborted = "TransactionAborted";
|
||||
public const string IssuedTokenFlowNotAllowed = "IssuedTokenFlowNotAllowed";
|
||||
}
|
||||
|
||||
public static class Actions
|
||||
{
|
||||
public const string NetDispatcher = "http://schemas.microsoft.com/net/2005/12/windowscommunicationfoundation/dispatcher/fault";
|
||||
public const string Transactions = "http://schemas.microsoft.com/net/2005/12/windowscommunicationfoundation/transactions/fault";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user