SecureConversationDriver.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / ServiceModel / System / ServiceModel / Security / SecureConversationDriver.cs / 1 / SecureConversationDriver.cs

                            //------------------------------------------------------------ 
// Copyright (c) Microsoft Corporation.  All rights reserved.
//-----------------------------------------------------------

namespace System.ServiceModel.Security 
{
    using System; 
    using System.ServiceModel; 
    using System.IdentityModel.Claims;
    using System.IdentityModel.Policy; 
    using System.Runtime.Serialization;
    using System.Collections.Generic;
    using System.Diagnostics;
    using System.Xml; 
    using System.Security.Principal;
 
 
    abstract class SecureConversationDriver
    { 
        public virtual XmlDictionaryString CloseAction
        {
            get
            { 
                // PreSharp Bug: Property get methods should not throw exceptions.
                #pragma warning suppress 56503 
                throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR.GetString(SR.SecureConversationDriverVersionDoesNotSupportSession))); 
            }
        } 

        public virtual XmlDictionaryString CloseResponseAction
        {
            get 
            {
                // PreSharp Bug: Property get methods should not throw exceptions. 
                #pragma warning suppress 56503 
                throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR.GetString(SR.SecureConversationDriverVersionDoesNotSupportSession)));
            } 
        }

        public virtual bool IsSessionSupported
        { 
            get
            { 
                return false; 
            }
        } 

        public abstract XmlDictionaryString IssueAction { get; }

        public abstract XmlDictionaryString IssueResponseAction { get; } 

        public virtual XmlDictionaryString RenewAction 
        { 
            get
            { 
                // PreSharp Bug: Property get methods should not throw exceptions.
                #pragma warning suppress 56503
                throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR.GetString(SR.SecureConversationDriverVersionDoesNotSupportSession)));
            } 
        }
 
        public virtual XmlDictionaryString RenewResponseAction 
        {
            get 
            {
                // PreSharp Bug: Property get methods should not throw exceptions.
                #pragma warning suppress 56503
                throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR.GetString(SR.SecureConversationDriverVersionDoesNotSupportSession))); 
            }
        } 
 
        public abstract XmlDictionaryString Namespace { get; }
 
        public abstract XmlDictionaryString RenewNeededFaultCode { get; }

        public abstract XmlDictionaryString BadContextTokenFaultCode { get; }
 
        public abstract string TokenTypeUri { get; }
 
        public abstract UniqueId GetSecurityContextTokenId(XmlDictionaryReader reader); 
        public abstract bool IsAtSecurityContextToken(XmlDictionaryReader reader);
    } 
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.


                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK