SlideShare une entreprise Scribd logo
1  sur  26
Télécharger pour lire hors ligne



























ChannelFactory<IInvoiceService> cf =
new ChannelFactory<IInvoiceService>(endpoint);
...


ChannelFactory<IInvoiceService> factory =
new ChannelFactory<IInvoiceService>(
new BasicHttpBinding(),
new EndpointAddress("http://server/invoiceservice"));
...

ChannelFactory<IInvoiceService> factory =
new ChannelFactory<IInvoiceService>("httpEndpoint");
...
<configuration>
<system.serviceModel>
<client>
<endpoint name="httpEndpoint"
address="http://server/invoiceservice"
binding="basicHttpBinding"
contract="IInvoiceService"/>
<endpoint name="tcpEndpoint"
address="net.tcp://server:8081/invoiceservice"
binding="netTcpBinding"
contract="IInvoiceService"/>
</client>
</system.serviceModel>
</configuration>




ChannelFactory<IInvoiceService> factory =
new ChannelFactory<IInvoiceService>("tcpEndpoint");
IInvoiceService channel = factory.CreateChannel();
channel.SubmitInvoice(invoice);
((IClientChannel)channel).Close();

















public interface IInvoiceServiceChannel :
IInvoiceService, System.ServiceModel.IClientChannel {
}
ChannelFactory<IInvoiceServiceChannel> factory =
new ChannelFactory<IInvoiceServiceChannel>("tcpEndpoint");
IInvoiceServiceChannel channel = factory.CreateChannel();
channel.SubmitInvoice(invoice);
channel.Close();






public partial class InvoiceServiceClient :
ClientBase<IInvoiceService>, IInvoiceService
{
public InvoiceServiceClient() { }
public InvoiceServiceClient(string endpointName) :
base(endpointName)
{
}
... // you're service contract methods will be here
...
InvoiceServiceClient client =
new InvoiceServiceClient("httpEndpoint");
Invoice invoice = new Invoice();
invoice.CustomerName = "Acme, Inc";
invoice.Amount = 100.00;
invoice.InvoiceDate = DateTime.Now;
client.SubmitInvoice(invoice);
client.Close();
...







<configuration>
<system.serviceModel>
<client>
<endpoint name="httpEndpoint"
address="http://server/invoiceservice"
binding="basicHttpBinding"
bindingConfiguration="MyConfiguration"
contract="InvoiceServiceReference.IInvoiceService" />
</client>
<bindings>
<basicHttpBinding>
<binding name="MyConfiguration" sendTimeout="00:05:00">
<security mode="Transport">
<transport clientCredentialType="Basic"/>
</security>
</binding>
</basicHttpBinding>
</bindings>
</system.serviceModel>
</configuration>
<configuration>
<system.serviceModel>
<client>
<endpoint name="httpEndpoint"
address="http://server/invoiceservice"
binding="basicHttpBinding"
behaviorConfiguration="viaBehavior"
contract="InvoiceServiceReference.IInvoiceService" />
</client>
<behaviors>
<endpointBehaviors>
<behavior name="viaBehavior">
<clientVia viaUri="http://router/invoiceservice"/>
</behavior>
</endpointBehaviors>
</behaviors>
...

InvoiceServiceClient client =
new InvoiceServiceClient("httpEndpoint");
Invoice invoice = ... // create invoice
try {
client.SubmitInvoice(invoice);
client.Close();
}
catch (FaultException fe) {
Console.WriteLine(fe);
client.Abort();
}
catch (CommunicationException ce) {
Console.WriteLine(ce);
client.Abort();
}
catch (TimeoutException te) {
Console.WriteLine(te);
client.Abort();
}
...











































Contenu connexe

En vedette

Odata writing-services-slides
Odata writing-services-slidesOdata writing-services-slides
Odata writing-services-slides
MasterCode.vn
 
2 windows-phone8-introduction-m2-slides
2 windows-phone8-introduction-m2-slides2 windows-phone8-introduction-m2-slides
2 windows-phone8-introduction-m2-slides
MasterCode.vn
 
Wp7 basics-module-03-slides
Wp7 basics-module-03-slidesWp7 basics-module-03-slides
Wp7 basics-module-03-slides
MasterCode.vn
 
Wp7 basics-module-02-slides
Wp7 basics-module-02-slidesWp7 basics-module-02-slides
Wp7 basics-module-02-slides
MasterCode.vn
 
6 windows-phone8-introduction-m6-slides
6 windows-phone8-introduction-m6-slides6 windows-phone8-introduction-m6-slides
6 windows-phone8-introduction-m6-slides
MasterCode.vn
 
3 windows-phone8-introduction-m3-slides
3 windows-phone8-introduction-m3-slides3 windows-phone8-introduction-m3-slides
3 windows-phone8-introduction-m3-slides
MasterCode.vn
 
Wp7 basics-module-04-slides
Wp7 basics-module-04-slidesWp7 basics-module-04-slides
Wp7 basics-module-04-slides
MasterCode.vn
 
Wp7 basics-module-01-slides
Wp7 basics-module-01-slidesWp7 basics-module-01-slides
Wp7 basics-module-01-slides
MasterCode.vn
 
7 introduction-php-mvc-cakephp-m7-authentication-slides
7 introduction-php-mvc-cakephp-m7-authentication-slides7 introduction-php-mvc-cakephp-m7-authentication-slides
7 introduction-php-mvc-cakephp-m7-authentication-slides
MasterCode.vn
 
1 windows-phone8-introduction-m1-slides
1 windows-phone8-introduction-m1-slides1 windows-phone8-introduction-m1-slides
1 windows-phone8-introduction-m1-slides
MasterCode.vn
 
7 windows-phone8-introduction-m7-slides
7 windows-phone8-introduction-m7-slides7 windows-phone8-introduction-m7-slides
7 windows-phone8-introduction-m7-slides
MasterCode.vn
 
5 windows-phone8-introduction-m5-slides
5 windows-phone8-introduction-m5-slides5 windows-phone8-introduction-m5-slides
5 windows-phone8-introduction-m5-slides
MasterCode.vn
 
3 introduction-php-mvc-cakephp-m3-getting-started-slides
3 introduction-php-mvc-cakephp-m3-getting-started-slides3 introduction-php-mvc-cakephp-m3-getting-started-slides
3 introduction-php-mvc-cakephp-m3-getting-started-slides
MasterCode.vn
 
Odata introduction-slides
Odata introduction-slidesOdata introduction-slides
Odata introduction-slides
MasterCode.vn
 

En vedette (20)

4. bootstrap aspdotnet-mvc5-slides
4. bootstrap aspdotnet-mvc5-slides4. bootstrap aspdotnet-mvc5-slides
4. bootstrap aspdotnet-mvc5-slides
 
Odata writing-services-slides
Odata writing-services-slidesOdata writing-services-slides
Odata writing-services-slides
 
2 windows-phone8-introduction-m2-slides
2 windows-phone8-introduction-m2-slides2 windows-phone8-introduction-m2-slides
2 windows-phone8-introduction-m2-slides
 
Wp7 basics-module-03-slides
Wp7 basics-module-03-slidesWp7 basics-module-03-slides
Wp7 basics-module-03-slides
 
Wp7 basics-module-02-slides
Wp7 basics-module-02-slidesWp7 basics-module-02-slides
Wp7 basics-module-02-slides
 
2 introduction-php-mvc-cakephp-m2-installation-slides
2 introduction-php-mvc-cakephp-m2-installation-slides2 introduction-php-mvc-cakephp-m2-installation-slides
2 introduction-php-mvc-cakephp-m2-installation-slides
 
6 windows-phone8-introduction-m6-slides
6 windows-phone8-introduction-m6-slides6 windows-phone8-introduction-m6-slides
6 windows-phone8-introduction-m6-slides
 
3 windows-phone8-introduction-m3-slides
3 windows-phone8-introduction-m3-slides3 windows-phone8-introduction-m3-slides
3 windows-phone8-introduction-m3-slides
 
Wp7 basics-module-04-slides
Wp7 basics-module-04-slidesWp7 basics-module-04-slides
Wp7 basics-module-04-slides
 
Wp7 basics-module-01-slides
Wp7 basics-module-01-slidesWp7 basics-module-01-slides
Wp7 basics-module-01-slides
 
7 introduction-php-mvc-cakephp-m7-authentication-slides
7 introduction-php-mvc-cakephp-m7-authentication-slides7 introduction-php-mvc-cakephp-m7-authentication-slides
7 introduction-php-mvc-cakephp-m7-authentication-slides
 
1 windows-phone8-introduction-m1-slides
1 windows-phone8-introduction-m1-slides1 windows-phone8-introduction-m1-slides
1 windows-phone8-introduction-m1-slides
 
7 windows-phone8-introduction-m7-slides
7 windows-phone8-introduction-m7-slides7 windows-phone8-introduction-m7-slides
7 windows-phone8-introduction-m7-slides
 
5 windows-phone8-introduction-m5-slides
5 windows-phone8-introduction-m5-slides5 windows-phone8-introduction-m5-slides
5 windows-phone8-introduction-m5-slides
 
3 introduction-php-mvc-cakephp-m3-getting-started-slides
3 introduction-php-mvc-cakephp-m3-getting-started-slides3 introduction-php-mvc-cakephp-m3-getting-started-slides
3 introduction-php-mvc-cakephp-m3-getting-started-slides
 
3. identity and security aspdotnet-mvc5-slides
3. identity and security aspdotnet-mvc5-slides3. identity and security aspdotnet-mvc5-slides
3. identity and security aspdotnet-mvc5-slides
 
Odata introduction-slides
Odata introduction-slidesOdata introduction-slides
Odata introduction-slides
 
1 seo-fundamentals-in depth keyword research (part 1)-slides
1 seo-fundamentals-in depth keyword research (part 1)-slides1 seo-fundamentals-in depth keyword research (part 1)-slides
1 seo-fundamentals-in depth keyword research (part 1)-slides
 
3 seo-fundamentals-establishing a domain strategy-slides
3 seo-fundamentals-establishing a domain strategy-slides3 seo-fundamentals-establishing a domain strategy-slides
3 seo-fundamentals-establishing a domain strategy-slides
 
6 seo-fundamentals-the power of the right content-slides
6 seo-fundamentals-the power of the right content-slides6 seo-fundamentals-the power of the right content-slides
6 seo-fundamentals-the power of the right content-slides
 

Similaire à Programming clients-slides

Jasigsakai12 columbia-customizes-cas
Jasigsakai12 columbia-customizes-casJasigsakai12 columbia-customizes-cas
Jasigsakai12 columbia-customizes-cas
ellentuck
 
Running Head CLIENT SERVER AUTHENTICATIONHANDLING CONCURRENT CL.docx
Running Head CLIENT SERVER AUTHENTICATIONHANDLING CONCURRENT CL.docxRunning Head CLIENT SERVER AUTHENTICATIONHANDLING CONCURRENT CL.docx
Running Head CLIENT SERVER AUTHENTICATIONHANDLING CONCURRENT CL.docx
joellemurphey
 

Similaire à Programming clients-slides (20)

70562-Dumps
70562-Dumps70562-Dumps
70562-Dumps
 
WCF - In a Week
WCF - In a WeekWCF - In a Week
WCF - In a Week
 
twMVC#46 一探 C# 11 與 .NET 7 的神奇
twMVC#46 一探 C# 11 與 .NET 7 的神奇twMVC#46 一探 C# 11 與 .NET 7 的神奇
twMVC#46 一探 C# 11 與 .NET 7 的神奇
 
Simple callcenter platform with PHP
Simple callcenter platform with PHPSimple callcenter platform with PHP
Simple callcenter platform with PHP
 
[drupalday2017] - Drupal come frontend che consuma servizi: HTTP Client Manager
[drupalday2017] - Drupal come frontend che consuma servizi: HTTP Client Manager[drupalday2017] - Drupal come frontend che consuma servizi: HTTP Client Manager
[drupalday2017] - Drupal come frontend che consuma servizi: HTTP Client Manager
 
WCF 4 Overview
WCF 4 OverviewWCF 4 Overview
WCF 4 Overview
 
Better Open Source Enterprise C++ Web Services
Better Open Source Enterprise C++ Web ServicesBetter Open Source Enterprise C++ Web Services
Better Open Source Enterprise C++ Web Services
 
WCF Fundamentals
WCF Fundamentals WCF Fundamentals
WCF Fundamentals
 
Jasigsakai12 columbia-customizes-cas
Jasigsakai12 columbia-customizes-casJasigsakai12 columbia-customizes-cas
Jasigsakai12 columbia-customizes-cas
 
Sockets
SocketsSockets
Sockets
 
Build resource server &amp; client for OCF Cloud (2018.8.30)
Build resource server &amp; client for OCF Cloud (2018.8.30)Build resource server &amp; client for OCF Cloud (2018.8.30)
Build resource server &amp; client for OCF Cloud (2018.8.30)
 
Java on Windows Azure
Java on Windows AzureJava on Windows Azure
Java on Windows Azure
 
How to build own IoT Platform
How to build own IoT PlatformHow to build own IoT Platform
How to build own IoT Platform
 
Advanced #2 networking
Advanced #2   networkingAdvanced #2   networking
Advanced #2 networking
 
Socket programming-tutorial-sk
Socket programming-tutorial-skSocket programming-tutorial-sk
Socket programming-tutorial-sk
 
Running Head CLIENT SERVER AUTHENTICATIONHANDLING CONCURRENT CL.docx
Running Head CLIENT SERVER AUTHENTICATIONHANDLING CONCURRENT CL.docxRunning Head CLIENT SERVER AUTHENTICATIONHANDLING CONCURRENT CL.docx
Running Head CLIENT SERVER AUTHENTICATIONHANDLING CONCURRENT CL.docx
 
Consul: Service Mesh for Microservices
Consul: Service Mesh for MicroservicesConsul: Service Mesh for Microservices
Consul: Service Mesh for Microservices
 
Manage your calls with CallKit
Manage your calls with CallKitManage your calls with CallKit
Manage your calls with CallKit
 
Anypoint connectorfor ibm as 400
Anypoint connectorfor ibm as 400Anypoint connectorfor ibm as 400
Anypoint connectorfor ibm as 400
 
API gateway setup
API gateway setupAPI gateway setup
API gateway setup
 

Plus de MasterCode.vn

Pd fbuoi7 8--tongquanseo-mastercode.vn
Pd fbuoi7 8--tongquanseo-mastercode.vnPd fbuoi7 8--tongquanseo-mastercode.vn
Pd fbuoi7 8--tongquanseo-mastercode.vn
MasterCode.vn
 
Pd fbuoi5 6-ảnh hưởng của social media tới kết quả seo-mastercode.vn
Pd fbuoi5 6-ảnh hưởng của social media tới kết quả seo-mastercode.vnPd fbuoi5 6-ảnh hưởng của social media tới kết quả seo-mastercode.vn
Pd fbuoi5 6-ảnh hưởng của social media tới kết quả seo-mastercode.vn
MasterCode.vn
 
Pdf buoi3 4-link-building-tran-ngoc-chinh-mastercode.vn
Pdf buoi3 4-link-building-tran-ngoc-chinh-mastercode.vnPdf buoi3 4-link-building-tran-ngoc-chinh-mastercode.vn
Pdf buoi3 4-link-building-tran-ngoc-chinh-mastercode.vn
MasterCode.vn
 
Pd fbuoi3 4-kỹ thuật xây dựng back link-mastercode.vn
Pd fbuoi3 4-kỹ thuật xây dựng back link-mastercode.vnPd fbuoi3 4-kỹ thuật xây dựng back link-mastercode.vn
Pd fbuoi3 4-kỹ thuật xây dựng back link-mastercode.vn
MasterCode.vn
 

Plus de MasterCode.vn (20)

Pd ftai lieu-tieng-anh-cho-nguoi-moi-bat-dau-mastercode.vn
Pd ftai lieu-tieng-anh-cho-nguoi-moi-bat-dau-mastercode.vnPd ftai lieu-tieng-anh-cho-nguoi-moi-bat-dau-mastercode.vn
Pd ftai lieu-tieng-anh-cho-nguoi-moi-bat-dau-mastercode.vn
 
Why apps-succeed-wpr-mastercode.vn
Why apps-succeed-wpr-mastercode.vnWhy apps-succeed-wpr-mastercode.vn
Why apps-succeed-wpr-mastercode.vn
 
Dzone performancemonitoring2016-mastercode.vn
Dzone performancemonitoring2016-mastercode.vnDzone performancemonitoring2016-mastercode.vn
Dzone performancemonitoring2016-mastercode.vn
 
Google công bố thông tin lịch xu hướng ngành 2017 mastercode.vn
Google công bố thông tin lịch xu hướng ngành 2017 mastercode.vnGoogle công bố thông tin lịch xu hướng ngành 2017 mastercode.vn
Google công bố thông tin lịch xu hướng ngành 2017 mastercode.vn
 
Nghiên cứu về khách hàng mastercode.vn
Nghiên cứu về khách hàng mastercode.vnNghiên cứu về khách hàng mastercode.vn
Nghiên cứu về khách hàng mastercode.vn
 
Lập trình sáng tạo creative computing textbook mastercode.vn
Lập trình sáng tạo creative computing textbook mastercode.vnLập trình sáng tạo creative computing textbook mastercode.vn
Lập trình sáng tạo creative computing textbook mastercode.vn
 
Pd fbuoi7 8--tongquanseo-mastercode.vn
Pd fbuoi7 8--tongquanseo-mastercode.vnPd fbuoi7 8--tongquanseo-mastercode.vn
Pd fbuoi7 8--tongquanseo-mastercode.vn
 
Pd fbuoi5 6-ảnh hưởng của social media tới kết quả seo-mastercode.vn
Pd fbuoi5 6-ảnh hưởng của social media tới kết quả seo-mastercode.vnPd fbuoi5 6-ảnh hưởng của social media tới kết quả seo-mastercode.vn
Pd fbuoi5 6-ảnh hưởng của social media tới kết quả seo-mastercode.vn
 
Pdf buoi3 4-link-building-tran-ngoc-chinh-mastercode.vn
Pdf buoi3 4-link-building-tran-ngoc-chinh-mastercode.vnPdf buoi3 4-link-building-tran-ngoc-chinh-mastercode.vn
Pdf buoi3 4-link-building-tran-ngoc-chinh-mastercode.vn
 
Pd fbuoi3 4-kỹ thuật xây dựng back link-mastercode.vn
Pd fbuoi3 4-kỹ thuật xây dựng back link-mastercode.vnPd fbuoi3 4-kỹ thuật xây dựng back link-mastercode.vn
Pd fbuoi3 4-kỹ thuật xây dựng back link-mastercode.vn
 
Pd fbuoi2 onpage – tối ưu hóa trang web-mastercode.vn
Pd fbuoi2 onpage – tối ưu hóa trang web-mastercode.vnPd fbuoi2 onpage – tối ưu hóa trang web-mastercode.vn
Pd fbuoi2 onpage – tối ưu hóa trang web-mastercode.vn
 
Pd fbuoi1 giới thiệu seo tools cơ bản-seo manager + seo guy-mastercode.vn
Pd fbuoi1 giới thiệu seo tools cơ bản-seo manager + seo guy-mastercode.vnPd fbuoi1 giới thiệu seo tools cơ bản-seo manager + seo guy-mastercode.vn
Pd fbuoi1 giới thiệu seo tools cơ bản-seo manager + seo guy-mastercode.vn
 
Pdf buoi1 2-on-page-tran-ngoc-chinh-mastercode.vn
Pdf buoi1 2-on-page-tran-ngoc-chinh-mastercode.vnPdf buoi1 2-on-page-tran-ngoc-chinh-mastercode.vn
Pdf buoi1 2-on-page-tran-ngoc-chinh-mastercode.vn
 
Pdfbài 7 máy tính xác tay và máy in bảo trì sự cố máy tính-mastercode.vn
Pdfbài 7 máy tính xác tay và máy in   bảo trì sự cố máy tính-mastercode.vnPdfbài 7 máy tính xác tay và máy in   bảo trì sự cố máy tính-mastercode.vn
Pdfbài 7 máy tính xác tay và máy in bảo trì sự cố máy tính-mastercode.vn
 
Pdfbài 6 bảo trì máy tính bảo trì sự cố máy tính-mastercode.vn
Pdfbài 6 bảo trì máy tính   bảo trì sự cố máy tính-mastercode.vnPdfbài 6 bảo trì máy tính   bảo trì sự cố máy tính-mastercode.vn
Pdfbài 6 bảo trì máy tính bảo trì sự cố máy tính-mastercode.vn
 
Pdfbài 5 bảo trì và tối ưu windows bảo trì sự cố máy tính-mastercode.vn
Pdfbài 5 bảo trì và tối ưu windows   bảo trì sự cố máy tính-mastercode.vnPdfbài 5 bảo trì và tối ưu windows   bảo trì sự cố máy tính-mastercode.vn
Pdfbài 5 bảo trì và tối ưu windows bảo trì sự cố máy tính-mastercode.vn
 
Pdfbài 4 ổ cứng hard drive bảo trì sự cố máy tính-mastercode.vn
Pdfbài 4 ổ cứng hard drive   bảo trì sự cố máy tính-mastercode.vnPdfbài 4 ổ cứng hard drive   bảo trì sự cố máy tính-mastercode.vn
Pdfbài 4 ổ cứng hard drive bảo trì sự cố máy tính-mastercode.vn
 
Pdfbài 3 cpu và ram bảo trì sự cố máy tính-mastercode.vn
Pdfbài 3 cpu và ram   bảo trì sự cố máy tính-mastercode.vnPdfbài 3 cpu và ram   bảo trì sự cố máy tính-mastercode.vn
Pdfbài 3 cpu và ram bảo trì sự cố máy tính-mastercode.vn
 
Pdfbài 1 giới thiệu chung về phần cứng bảo trì sự cố máy tính-mastercode.vn
Pdfbài 1 giới thiệu chung về phần cứng   bảo trì sự cố máy tính-mastercode.vnPdfbài 1 giới thiệu chung về phần cứng   bảo trì sự cố máy tính-mastercode.vn
Pdfbài 1 giới thiệu chung về phần cứng bảo trì sự cố máy tính-mastercode.vn
 
Pdfbài 2 bo mạch chủ (main) bảo trì sự cố máy tính-mastercode.vn
Pdfbài 2 bo mạch chủ (main)   bảo trì sự cố máy tính-mastercode.vnPdfbài 2 bo mạch chủ (main)   bảo trì sự cố máy tính-mastercode.vn
Pdfbài 2 bo mạch chủ (main) bảo trì sự cố máy tính-mastercode.vn
 

Dernier

Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
ciinovamais
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
QucHHunhnh
 

Dernier (20)

Energy Resources. ( B. Pharmacy, 1st Year, Sem-II) Natural Resources
Energy Resources. ( B. Pharmacy, 1st Year, Sem-II) Natural ResourcesEnergy Resources. ( B. Pharmacy, 1st Year, Sem-II) Natural Resources
Energy Resources. ( B. Pharmacy, 1st Year, Sem-II) Natural Resources
 
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
Unit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxUnit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptx
 
Role Of Transgenic Animal In Target Validation-1.pptx
Role Of Transgenic Animal In Target Validation-1.pptxRole Of Transgenic Animal In Target Validation-1.pptx
Role Of Transgenic Animal In Target Validation-1.pptx
 
Food Chain and Food Web (Ecosystem) EVS, B. Pharmacy 1st Year, Sem-II
Food Chain and Food Web (Ecosystem) EVS, B. Pharmacy 1st Year, Sem-IIFood Chain and Food Web (Ecosystem) EVS, B. Pharmacy 1st Year, Sem-II
Food Chain and Food Web (Ecosystem) EVS, B. Pharmacy 1st Year, Sem-II
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SD
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
Asian American Pacific Islander Month DDSD 2024.pptx
Asian American Pacific Islander Month DDSD 2024.pptxAsian American Pacific Islander Month DDSD 2024.pptx
Asian American Pacific Islander Month DDSD 2024.pptx
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701
 

Programming clients-slides