Package system.servicemodel.dispatcher
Class ClientOperation
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- system.servicemodel.dispatcher.ClientOperationCompatBase
-
- system.servicemodel.dispatcher.ClientOperation
-
- All Implemented Interfaces:
IJCOBridgeReflected
public class ClientOperation extends ClientOperationCompatBase
The base .NET class managing System.ServiceModel.Dispatcher.ClientOperation, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.ServiceModel.Dispatcher.ClientOperation
Powered by JCOBridge: more info at https://www.jcobridge.com
- Author:
- MASES s.r.l https://masesgroup.com
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringassemblyFullNameFully assembly qualified name: System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089static java.lang.StringassemblyShortNameAssembly name: System.ServiceModelstatic java.lang.StringclassNameQualified class name: System.ServiceModel.Dispatcher.ClientOperationstatic JCTypeclassTypeThe type managed from JCOBridge.
-
Constructor Summary
Constructors Constructor Description ClientOperation()ClientOperation(java.lang.Object instance)Internal constructor.ClientOperation(ClientRuntime parent, java.lang.String name, java.lang.String action)ClientOperation(ClientRuntime parent, java.lang.String name, java.lang.String action, java.lang.String replyAction)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ClientOperationcast(IJCOBridgeReflected from)Try to cast theIJCOBridgeReflectedinstance intoClientOperation, a cast assert is made to check if types are compatible.java.lang.StringgetAction()MethodInfogetBeginMethod()booleangetDeserializeReply()MethodInfogetEndMethod()IClientMessageFormattergetFormatter()booleangetIsInitiating()booleangetIsOneWay()booleangetIsTerminating()java.lang.StringgetJCOAssemblyName()Returns the reflected Assembly namejava.lang.StringgetJCOClassName()Returns the reflected Class namejava.lang.ObjectgetJCOInstance()Returns the instantiated classjava.lang.StringgetJCOObjectName()Returns the reflected Class name used to build the objectJCTypegetJCOType()Returns the instantiated class Typejava.lang.StringgetName()ClientRuntimegetParent()java.lang.StringgetReplyAction()booleangetSerializeRequest()MethodInfogetSyncMethod()MethodInfogetTaskMethod()NetTypegetTaskTResult()voidsetBeginMethod(MethodInfo BeginMethod)voidsetDeserializeReply(boolean DeserializeReply)voidsetEndMethod(MethodInfo EndMethod)voidsetFormatter(IClientMessageFormatter Formatter)voidsetIsInitiating(boolean IsInitiating)voidsetIsOneWay(boolean IsOneWay)voidsetIsTerminating(boolean IsTerminating)voidsetJCOInstance(JCObject instance)voidsetSerializeRequest(boolean SerializeRequest)voidsetSyncMethod(MethodInfo SyncMethod)voidsetTaskMethod(MethodInfo TaskMethod)voidsetTaskTResult(NetType TaskTResult)
-
-
-
Field Detail
-
assemblyFullName
public static final java.lang.String assemblyFullName
Fully assembly qualified name: System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089- See Also:
- Constant Field Values
-
assemblyShortName
public static final java.lang.String assemblyShortName
Assembly name: System.ServiceModel- See Also:
- Constant Field Values
-
className
public static final java.lang.String className
Qualified class name: System.ServiceModel.Dispatcher.ClientOperation- See Also:
- Constant Field Values
-
-
Constructor Detail
-
ClientOperation
public ClientOperation(java.lang.Object instance) throws java.lang.ThrowableInternal constructor. Use with caution- Throws:
java.lang.Throwable
-
ClientOperation
public ClientOperation() throws java.lang.Throwable- Throws:
java.lang.Throwable
-
ClientOperation
public ClientOperation(ClientRuntime parent, java.lang.String name, java.lang.String action) throws java.lang.Throwable, ArgumentException, IndexOutOfRangeException, MulticastNotSupportedException, ArgumentNullException, FormatException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, ConfigurationErrorsException, ArgumentOutOfRangeException, OverflowException, OutOfMemoryException
- Throws:
java.lang.ThrowableArgumentExceptionIndexOutOfRangeExceptionMulticastNotSupportedExceptionArgumentNullExceptionFormatExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionConfigurationErrorsExceptionArgumentOutOfRangeExceptionOverflowExceptionOutOfMemoryException
-
ClientOperation
public ClientOperation(ClientRuntime parent, java.lang.String name, java.lang.String action, java.lang.String replyAction) throws java.lang.Throwable, ArgumentException, IndexOutOfRangeException, ArgumentNullException, FormatException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, OverflowException, OutOfMemoryException
-
-
Method Detail
-
getJCOAssemblyName
public java.lang.String getJCOAssemblyName()
Description copied from interface:IJCOBridgeReflectedReturns the reflected Assembly name- Specified by:
getJCOAssemblyNamein interfaceIJCOBridgeReflected- Overrides:
getJCOAssemblyNamein classClientOperationCompatBase- Returns:
- A
Stringrepresenting the Fullname of reflected Assembly
-
getJCOClassName
public java.lang.String getJCOClassName()
Description copied from interface:IJCOBridgeReflectedReturns the reflected Class name- Specified by:
getJCOClassNamein interfaceIJCOBridgeReflected- Overrides:
getJCOClassNamein classClientOperationCompatBase- Returns:
- A
Stringrepresenting the Fullname of reflected Class
-
getJCOObjectName
public java.lang.String getJCOObjectName()
Description copied from interface:IJCOBridgeReflectedReturns the reflected Class name used to build the object- Specified by:
getJCOObjectNamein interfaceIJCOBridgeReflected- Overrides:
getJCOObjectNamein classClientOperationCompatBase- Returns:
- A
Stringrepresenting the name used to allocated the object in CLR context
-
getJCOInstance
public java.lang.Object getJCOInstance()
Description copied from interface:IJCOBridgeReflectedReturns the instantiated class- Specified by:
getJCOInstancein interfaceIJCOBridgeReflected- Overrides:
getJCOInstancein classClientOperationCompatBase- Returns:
- An
Objectrepresenting the CLR instance of the instantiated Class
-
setJCOInstance
public void setJCOInstance(JCObject instance)
- Overrides:
setJCOInstancein classClientOperationCompatBase
-
getJCOType
public JCType getJCOType()
Description copied from interface:IJCOBridgeReflectedReturns the instantiated class Type- Specified by:
getJCOTypein interfaceIJCOBridgeReflected- Overrides:
getJCOTypein classClientOperationCompatBase- Returns:
- A
JCTyperepresenting the CLR Type of the instantiated Class
-
cast
public static ClientOperation cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflectedinstance intoClientOperation, a cast assert is made to check if types are compatible.- Parameters:
from-IJCOBridgeReflectedinstance to be casted- Returns:
ClientOperationinstance- Throws:
java.lang.Throwable- in case of error during cast operation
-
getDeserializeReply
public boolean getDeserializeReply() throws java.lang.Throwable- Throws:
java.lang.Throwable
-
setDeserializeReply
public void setDeserializeReply(boolean DeserializeReply) throws java.lang.Throwable, ArgumentException, IndexOutOfRangeException, ArgumentNullException, NotImplementedException, CultureNotFoundException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, OverflowException, OutOfMemoryException
-
getIsInitiating
public boolean getIsInitiating() throws java.lang.Throwable- Throws:
java.lang.Throwable
-
setIsInitiating
public void setIsInitiating(boolean IsInitiating) throws java.lang.Throwable, ArgumentException, IndexOutOfRangeException, ArgumentNullException, NotImplementedException, CultureNotFoundException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, OverflowException, OutOfMemoryException
-
getIsOneWay
public boolean getIsOneWay() throws java.lang.Throwable- Throws:
java.lang.Throwable
-
setIsOneWay
public void setIsOneWay(boolean IsOneWay) throws java.lang.Throwable, ArgumentException, IndexOutOfRangeException, ArgumentNullException, NotImplementedException, CultureNotFoundException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, OverflowException, OutOfMemoryException
-
getIsTerminating
public boolean getIsTerminating() throws java.lang.Throwable- Throws:
java.lang.Throwable
-
setIsTerminating
public void setIsTerminating(boolean IsTerminating) throws java.lang.Throwable, ArgumentException, IndexOutOfRangeException, ArgumentNullException, NotImplementedException, CultureNotFoundException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, OverflowException, OutOfMemoryException
-
getSerializeRequest
public boolean getSerializeRequest() throws java.lang.Throwable- Throws:
java.lang.Throwable
-
setSerializeRequest
public void setSerializeRequest(boolean SerializeRequest) throws java.lang.Throwable, ArgumentException, IndexOutOfRangeException, ArgumentNullException, NotImplementedException, CultureNotFoundException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, OverflowException, OutOfMemoryException
-
getBeginMethod
public MethodInfo getBeginMethod() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setBeginMethod
public void setBeginMethod(MethodInfo BeginMethod) throws java.lang.Throwable, ArgumentException, IndexOutOfRangeException, ArgumentNullException, NotImplementedException, CultureNotFoundException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, OverflowException, OutOfMemoryException
-
getEndMethod
public MethodInfo getEndMethod() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setEndMethod
public void setEndMethod(MethodInfo EndMethod) throws java.lang.Throwable, ArgumentException, IndexOutOfRangeException, ArgumentNullException, NotImplementedException, CultureNotFoundException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, OverflowException, OutOfMemoryException
-
getSyncMethod
public MethodInfo getSyncMethod() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setSyncMethod
public void setSyncMethod(MethodInfo SyncMethod) throws java.lang.Throwable, ArgumentException, IndexOutOfRangeException, ArgumentNullException, NotImplementedException, CultureNotFoundException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, OverflowException, OutOfMemoryException
-
getTaskMethod
public MethodInfo getTaskMethod() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setTaskMethod
public void setTaskMethod(MethodInfo TaskMethod) throws java.lang.Throwable, ArgumentException, IndexOutOfRangeException, ArgumentNullException, NotImplementedException, CultureNotFoundException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, OverflowException, OutOfMemoryException
-
getParent
public ClientRuntime getParent() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getFormatter
public IClientMessageFormatter getFormatter() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setFormatter
public void setFormatter(IClientMessageFormatter Formatter) throws java.lang.Throwable, ArgumentException, IndexOutOfRangeException, ArgumentNullException, NotImplementedException, CultureNotFoundException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, OverflowException, OutOfMemoryException
-
getAction
public java.lang.String getAction() throws java.lang.Throwable- Throws:
java.lang.Throwable
-
getName
public java.lang.String getName() throws java.lang.Throwable- Throws:
java.lang.Throwable
-
getReplyAction
public java.lang.String getReplyAction() throws java.lang.Throwable- Throws:
java.lang.Throwable
-
getTaskTResult
public NetType getTaskTResult() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setTaskTResult
public void setTaskTResult(NetType TaskTResult) throws java.lang.Throwable, ArgumentException, IndexOutOfRangeException, ArgumentNullException, NotImplementedException, CultureNotFoundException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, OverflowException, OutOfMemoryException
-
-