本文整理匯總了C#中System.ServiceModel.ChannelFactory.SayHi方法的典型用法代碼示例。如果您正苦於以下問題:C# ChannelFactory.SayHi方法的具體用法?C# ChannelFactory.SayHi怎麽用?C# ChannelFactory.SayHi使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類System.ServiceModel.ChannelFactory
的用法示例。
在下文中一共展示了ChannelFactory.SayHi方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: Main
public static void Main( string[] args )
{
BypassSslCheck();
try {
var client = new ChannelFactory<IHelloWorld>( "CustomBinding_IHelloWorld" ).CreateChannel();
Console.WriteLine( client.SayHi( new SayHiRequest { Message = "World" } ).Reponse );
var user = new User { Name = "World" };
Console.WriteLine( client.SayHiToUser( new SayHiToUserRequest { User = user } ).Reponse );
//say hi to some more users to fill up the map a bit
user = new User { Name = "Galaxy" };
Console.WriteLine( client.SayHiToUser( new SayHiToUserRequest { User = user } ).Reponse );
user = new User { Name = "Universe" };
Console.WriteLine( client.SayHiToUser( new SayHiToUserRequest { User = user } ).Reponse );
Console.WriteLine();
Console.WriteLine( "Users: " );
var users = client.GetUsers( new GetUsersRequest() ).Users;
foreach ( var e in users ) {
Console.WriteLine( " " + e.Id + ": " + e.User.Name );
}
} catch ( Exception ex ) {
Console.WriteLine( "-- EXCEPTION --" );
Console.WriteLine( ex );
}
Console.ReadLine();
}
示例2: SayHi
public static string SayHi(MyComposite customParam)
{
BasicHttpBinding basicHttpBinding = new BasicHttpBinding();
EndpointAddress endpointAddress = new EndpointAddress("http://localhost:56071/ADMCompletedDemoService.svc");
IADMCompletedDemoService service =
new ChannelFactory< IADMCompletedDemoService >(basicHttpBinding, endpointAddress).CreateChannel();
var serviceResponse = service.SayHi(customParam);
return serviceResponse;
}