| | | 1 | | // Licensed to the .NET Foundation under one or more agreements. |
| | | 2 | | // The .NET Foundation licenses this file to you under the MIT license. |
| | | 3 | | |
| | | 4 | | using System; |
| | | 5 | | using System.Xml; |
| | | 6 | | |
| | | 7 | | namespace CoreWCF.Security |
| | | 8 | | { |
| | | 9 | | internal abstract class SecureConversationDriver |
| | | 10 | | { |
| | 0 | 11 | | public virtual XmlDictionaryString CloseAction => throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new |
| | | 12 | | |
| | 0 | 13 | | public virtual XmlDictionaryString CloseResponseAction => throw DiagnosticUtility.ExceptionUtility.ThrowHelperEr |
| | | 14 | | |
| | 0 | 15 | | public virtual bool IsSessionSupported => false; |
| | | 16 | | |
| | | 17 | | public abstract XmlDictionaryString IssueAction { get; } |
| | | 18 | | |
| | | 19 | | public abstract XmlDictionaryString IssueResponseAction { get; } |
| | | 20 | | |
| | 0 | 21 | | public virtual XmlDictionaryString RenewAction => throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new |
| | | 22 | | |
| | 0 | 23 | | public virtual XmlDictionaryString RenewResponseAction => throw DiagnosticUtility.ExceptionUtility.ThrowHelperEr |
| | | 24 | | |
| | | 25 | | public abstract XmlDictionaryString Namespace { get; } |
| | | 26 | | |
| | | 27 | | public abstract XmlDictionaryString RenewNeededFaultCode { get; } |
| | | 28 | | |
| | | 29 | | public abstract XmlDictionaryString BadContextTokenFaultCode { get; } |
| | | 30 | | |
| | | 31 | | public abstract string TokenTypeUri { get; } |
| | | 32 | | |
| | | 33 | | public abstract UniqueId GetSecurityContextTokenId(XmlDictionaryReader reader); |
| | | 34 | | public abstract bool IsAtSecurityContextToken(XmlDictionaryReader reader); |
| | | 35 | | } |
| | | 36 | | } |