/[dgee]/dgee/cslib/DotGNU/DGEE/Protocols/RequestProc.cs
ViewVC logotype

Diff of /dgee/cslib/DotGNU/DGEE/Protocols/RequestProc.cs

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.1.2.1 by csmith, Sat Aug 30 17:47:17 2003 UTC revision 1.1.2.2 by csmith, Sat Aug 30 19:59:25 2003 UTC
# Line 34  namespace DotGNU.DGEE.Protocols Line 34  namespace DotGNU.DGEE.Protocols
34    {    {
35      // Invoke requested method if we have a Request Stream      // Invoke requested method if we have a Request Stream
36      //      //
37      public MethodInfo ResolveMethod( String type, String method )      public Type ResolveType( String type )
38      {          {
39            Type svcType = Type.GetType( type );            Type svcType = Type.GetType( type );
40        Console.WriteLine( "Request Proc ThisType: {0}", svcType.ToString() );        Console.WriteLine( "Request Proc ThisType: {0}", svcType.ToString() );
41              return svcType;
42            }
43    
44        public MethodInfo ResolveMethod( Type svcType, String method )
45        {
46        MethodInfo minfo = FindMethod( svcType, method );        MethodInfo minfo = FindMethod( svcType, method );
47    
48            if( minfo == null )            if( minfo == null )

Legend:
Removed from v.1.1.2.1  
changed lines
  Added in v.1.1.2.2

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26