X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2Fcorlib%2FSystem.Runtime.Remoting.Channels%2FIChannel.cs;h=50b04429141da74be7bfe1b5857df6029f89f7f5;hb=6e03e95d020719ce4c0e50ec6842d537be4a2746;hp=e6cec1043326bd4ed0befc4c534e1d52b91d819b;hpb=1df5bfa6afb22b93f3933dfe37bd50b84be7792a;p=mono.git diff --git a/mcs/class/corlib/System.Runtime.Remoting.Channels/IChannel.cs b/mcs/class/corlib/System.Runtime.Remoting.Channels/IChannel.cs index e6cec104332..50b04429141 100644 --- a/mcs/class/corlib/System.Runtime.Remoting.Channels/IChannel.cs +++ b/mcs/class/corlib/System.Runtime.Remoting.Channels/IChannel.cs @@ -6,13 +6,36 @@ // 2002 (C) Copyright, Ximian, Inc. // +// +// Copyright (C) 2004 Novell, Inc (http://www.novell.com) +// +// Permission is hereby granted, free of charge, to any person obtaining +// a copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to +// permit persons to whom the Software is furnished to do so, subject to +// the following conditions: +// +// The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +// + namespace System.Runtime.Remoting.Channels { public interface IChannel { string ChannelName { get; } - int ChannelPriorirty { get; } + int ChannelPriority { get; } string Parse (string url, out string objectURI); }