JavascriptCallbackBehaviorAttribute.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / NetFx35 / System.ServiceModel.Web / System / ServiceModel / Web / JavascriptCallbackBehaviorAttribute.cs / 1305376 / JavascriptCallbackBehaviorAttribute.cs

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

namespace System.ServiceModel.Web 
{
    using System; 
    using System.ServiceModel.Description; 
    using System.ServiceModel.Dispatcher;
    using System.ServiceModel.Channels; 
    using System.ServiceModel.Web;
    using System.ServiceModel.Administration;
    using System.Collections.Generic;
 
    [AttributeUsage(AttributeTargets.Class, AllowMultiple=false)]
    public sealed class JavascriptCallbackBehaviorAttribute : Attribute, IContractBehavior 
    { 
        string urlParameterName;
 
        public string UrlParameterName
        {
            get { return urlParameterName; }
            set 
            {
                if (string.IsNullOrEmpty(value)) 
                { 
                    throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentOutOfRangeException("value"));
                } 
                else
                {
                    urlParameterName = value;
                } 
            }
        } 
 
        public JavascriptCallbackBehaviorAttribute()
        { 
        }

        public void AddBindingParameters(ContractDescription contractDescription, ServiceEndpoint endpoint, System.ServiceModel.Channels.BindingParameterCollection bindingParameters)
        { 
        }
 
        public void ApplyClientBehavior(ContractDescription contractDescription, ServiceEndpoint endpoint, System.ServiceModel.Dispatcher.ClientRuntime clientRuntime) 
        {
        } 

        public void ApplyDispatchBehavior(ContractDescription contractDescription, ServiceEndpoint endpoint, System.ServiceModel.Dispatcher.DispatchRuntime dispatchRuntime)
        {
        } 

        public void Validate(ContractDescription contractDescription, ServiceEndpoint endpoint) 
        { 

        } 
    }
}


// File provided for Reference Use Only by Microsoft Corporation (c) 2007.


                        

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