33 references to parts
System.Runtime.Remoting (33)
metadata\wsdlparser.cs (33)
1083
message.
parts
.Add(part);
2007
if (message.
parts
!= null)
2009
methodInfo.inputNames = new String[message.
parts
.Count];
2010
methodInfo.inputNamesNs = new String[message.
parts
.Count];
2011
methodInfo.inputElements = new String[message.
parts
.Count];
2012
methodInfo.inputElementsNs = new String[message.
parts
.Count];
2013
methodInfo.inputTypes = new String[message.
parts
.Count];
2014
methodInfo.inputTypesNs = new String[message.
parts
.Count];
2015
for (int ip=0; ip<message.
parts
.Count; ip++)
2017
methodInfo.inputNames[ip] = ((WsdlMessagePart)message.
parts
[ip]).name;
2018
methodInfo.inputNamesNs[ip] = ((WsdlMessagePart)message.
parts
[ip]).nameNs;
2020
methodInfo.inputElements[ip] = ((WsdlMessagePart)message.
parts
[ip]).element;
2021
methodInfo.inputElementsNs[ip] = ((WsdlMessagePart)message.
parts
[ip]).elementNs;
2023
methodInfo.inputTypes[ip] = ((WsdlMessagePart)message.
parts
[ip]).typeName;
2024
methodInfo.inputTypesNs[ip] = ((WsdlMessagePart)message.
parts
[ip]).typeNameNs;
2051
if (message.
parts
!= null)
2053
methodInfo.outputNames = new String[message.
parts
.Count];
2054
methodInfo.outputNamesNs = new String[message.
parts
.Count];
2055
methodInfo.outputElements = new String[message.
parts
.Count];
2056
methodInfo.outputElementsNs = new String[message.
parts
.Count];
2057
methodInfo.outputTypes = new String[message.
parts
.Count];
2058
methodInfo.outputTypesNs = new String[message.
parts
.Count];
2059
for (int ip=0; ip<message.
parts
.Count; ip++)
2061
methodInfo.outputNames[ip] = ((WsdlMessagePart)message.
parts
[ip]).name;
2062
methodInfo.outputNamesNs[ip] = ((WsdlMessagePart)message.
parts
[ip]).nameNs;
2064
methodInfo.outputElements[ip] = ((WsdlMessagePart)message.
parts
[ip]).element;
2065
methodInfo.outputElementsNs[ip] = ((WsdlMessagePart)message.
parts
[ip]).elementNs;
2067
methodInfo.outputTypes[ip] = ((WsdlMessagePart)message.
parts
[ip]).typeName;
2068
methodInfo.outputTypesNs[ip] = ((WsdlMessagePart)message.
parts
[ip]).typeNameNs;
7014
for (int i=0; i<
parts
.Count; i++)
7015
((INamespaces)
parts
[i]).UsedNamespace(namespaces);
7022
for (int i=0; i<
parts
.Count; i++)
7023
((IDump)
parts
[i]).Dump();