.\" Automatically generated by Pod::Man 4.14 (Pod::Simple 3.40) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" Set up some character translations and predefined strings. \*(-- will .\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left .\" double quote, and \*(R" will give a right double quote. \*(C+ will .\" give a nicer C++. Capital omega is used to do unbreakable dashes and .\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff, .\" nothing in troff, for use with C<>. .tr \(*W- .ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p' .ie n \{\ . ds -- \(*W- . ds PI pi . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch . ds L" "" . ds R" "" . ds C` "" . ds C' "" 'br\} .el\{\ . ds -- \|\(em\| . ds PI \(*p . ds L" `` . ds R" '' . ds C` . ds C' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .de IX .. .nr rF 0 .if \n(.g .if rF .nr rF 1 .if (\n(rF:(\n(.g==0)) \{\ . if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} . \} .\} .rr rF .\" ======================================================================== .\" .IX Title "Pod::WSDL::Method 3pm" .TH Pod::WSDL::Method 3pm "2021-01-07" "perl v5.32.0" "User Contributed Perl Documentation" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH "NAME" Pod::WSDL::Method \- Represents a method in Pod::WSDL (internal use only) .SH "SYNOPSIS" .IX Header "SYNOPSIS" .Vb 2 \& use Pod::WSDL::Method; \& my $m = new Pod::WSDL::Method(name => \*(AqmySub\*(Aq, writer => \*(AqmyWriter\*(Aq, doc => new Pod::WSDL::Doc($docStr), return => new Pod::WSDL::Return($retStr)); .Ve .SH "DESCRIPTION" .IX Header "DESCRIPTION" This module is used internally by Pod::WSDL. It is unlikely that you have to interact directly with it. If that is the case, take a look at the code, it is rather simple. .SH "METHODS" .IX Header "METHODS" .SS "new" .IX Subsection "new" Instantiates a new Pod::WSDL::Method. .SS "Parameters" .IX Subsection "Parameters" .IP "\(bu" 4 name \- name of the method, mandatory .IP "\(bu" 4 doc \- a Pod::WSDL::Doc object, can be omitted, use method doc later .IP "\(bu" 4 return \- a Pod::WSDL::Return object, can be omitted, use method return later .IP "\(bu" 4 params \- ref to array of Pod::WSDL::Param objects, can be omitted, use \fBaddParam()\fR later .IP "\(bu" 4 faults \- ref to array of Pod::WSDL::Fault objects, can be omitted, use \fBaddFault()\fR later .IP "\(bu" 4 oneway \- if true, method is a one way operation .IP "\(bu" 4 writer \- XML::Writer\-Object for output, mandatory .SS "addParam" .IX Subsection "addParam" Add a Pod::WSDL::Param object to Pod::WSDL::Method .SS "addFault" .IX Subsection "addFault" Add a Pod::WSDL::Fault object to Pod::WSDL::Method .SS "return" .IX Subsection "return" Get or Set the Pod::WSDL::Return object for Pod::WSDL::Method .SS "doc" .IX Subsection "doc" Get or Set the Pod::WSDL::Doc object for Pod::WSDL::Method .SS "requestName" .IX Subsection "requestName" Get name for request in \s-1XML\s0 output .SS "responseName" .IX Subsection "responseName" Get name for response in \s-1XML\s0 output .SS "writeBindingOperation" .IX Subsection "writeBindingOperation" Write operation child for binding element in \s-1XML\s0 output .SS "writeMessages" .IX Subsection "writeMessages" Write message elements in \s-1XML\s0 output .SS "writePortTypeOperation" .IX Subsection "writePortTypeOperation" Write operation child for porttype element in \s-1XML\s0 output .SH "EXTERNAL DEPENDENCIES" .IX Header "EXTERNAL DEPENDENCIES" .Vb 1 \& [none] .Ve .SH "EXAMPLES" .IX Header "EXAMPLES" see Pod::WSDL .SH "BUGS" .IX Header "BUGS" see Pod::WSDL .SH "TODO" .IX Header "TODO" see Pod::WSDL .SH "SEE ALSO" .IX Header "SEE ALSO" .Vb 1 \& Pod::WSDL :\-) .Ve .SH "AUTHOR" .IX Header "AUTHOR" Tarek Ahmed, .SH "COPYRIGHT AND LICENSE" .IX Header "COPYRIGHT AND LICENSE" Copyright (C) 2006 by Tarek Ahmed .PP This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.5 or, at your option, any later version of Perl 5 you may have available.