Package system.net.mail
Class Attachment
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- system.net.mail.AttachmentBase
-
- system.net.mail.Attachment
-
- All Implemented Interfaces:
java.lang.AutoCloseable
,IJCOBridgeReflected
public class Attachment extends AttachmentBase
The base .NET class managing System.Net.Mail.Attachment, System.Net.Mail, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Net.Mail.Attachment
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.String
assemblyFullName
Fully assembly qualified name: System.Net.Mail, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51static java.lang.String
assemblyShortName
Assembly name: System.Net.Mailstatic java.lang.String
className
Qualified class name: System.Net.Mail.Attachmentstatic JCType
classType
The type managed from JCOBridge.
-
Constructor Summary
Constructors Constructor Description Attachment()
Attachment(java.lang.Object instance)
Internal constructor.Attachment(java.lang.String fileName)
Attachment(java.lang.String fileName, java.lang.String mediaType)
Attachment(java.lang.String fileName, ContentType contentType)
Attachment(Stream contentStream, java.lang.String name)
Attachment(Stream contentStream, java.lang.String name, java.lang.String mediaType)
Attachment(Stream contentStream, ContentType contentType)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Attachment
cast(IJCOBridgeReflected from)
Try to cast theIJCOBridgeReflected
instance intoAttachment
, a cast assert is made to check if types are compatible.static Attachment
CreateAttachmentFromString(java.lang.String content, java.lang.String name)
static Attachment
CreateAttachmentFromString(java.lang.String content, java.lang.String name, Encoding contentEncoding, java.lang.String mediaType)
static Attachment
CreateAttachmentFromString(java.lang.String content, ContentType contentType)
ContentDisposition
getContentDisposition()
java.lang.String
getJCOAssemblyName()
Returns the reflected Assembly namejava.lang.String
getJCOClassName()
Returns the reflected Class namejava.lang.Object
getJCOInstance()
Returns the instantiated classjava.lang.String
getJCOObjectName()
Returns the reflected Class name used to build the objectJCType
getJCOType()
Returns the instantiated class Typejava.lang.String
getName()
Encoding
getNameEncoding()
void
setJCOInstance(JCObject instance)
void
setName(java.lang.String Name)
void
setNameEncoding(Encoding NameEncoding)
-
Methods inherited from class system.net.mail.AttachmentBase
close, Dispose, getContentId, getContentStream, getContentType, getTransferEncoding, setContentId, setContentType, setTransferEncoding
-
-
-
-
Field Detail
-
assemblyFullName
public static final java.lang.String assemblyFullName
Fully assembly qualified name: System.Net.Mail, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51- See Also:
- Constant Field Values
-
assemblyShortName
public static final java.lang.String assemblyShortName
Assembly name: System.Net.Mail- See Also:
- Constant Field Values
-
className
public static final java.lang.String className
Qualified class name: System.Net.Mail.Attachment- See Also:
- Constant Field Values
-
-
Constructor Detail
-
Attachment
public Attachment(java.lang.Object instance) throws java.lang.Throwable
Internal constructor. Use with caution- Throws:
java.lang.Throwable
-
Attachment
public Attachment() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Attachment
public Attachment(Stream contentStream, ContentType contentType) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentNullException, FormatException, ArgumentOutOfRangeException, PlatformNotSupportedException, InvalidOperationException, OutOfMemoryException
-
Attachment
public Attachment(Stream contentStream, java.lang.String name, java.lang.String mediaType) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, UnreachableException, IndexOutOfRangeException, FormatException, InvalidOperationException, OutOfMemoryException
-
Attachment
public Attachment(Stream contentStream, java.lang.String name) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, UnreachableException, IndexOutOfRangeException, FormatException, InvalidOperationException, OutOfMemoryException
-
Attachment
public Attachment(java.lang.String fileName, ContentType contentType) throws java.lang.Throwable, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, SerializationException, FormatException, NotSupportedException, PlatformNotSupportedException, IndexOutOfRangeException, CultureNotFoundException, InvalidOperationException, OutOfMemoryException, RankException, ArrayTypeMismatchException, InvalidCastException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
ArgumentOutOfRangeException
SerializationException
FormatException
NotSupportedException
PlatformNotSupportedException
IndexOutOfRangeException
CultureNotFoundException
InvalidOperationException
OutOfMemoryException
RankException
ArrayTypeMismatchException
InvalidCastException
-
Attachment
public Attachment(java.lang.String fileName, java.lang.String mediaType) throws java.lang.Throwable, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, SerializationException, PlatformNotSupportedException, UnreachableException, IndexOutOfRangeException, FormatException, InvalidOperationException, NotSupportedException, OutOfMemoryException, RankException, ArrayTypeMismatchException, InvalidCastException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
ArgumentOutOfRangeException
SerializationException
PlatformNotSupportedException
UnreachableException
IndexOutOfRangeException
FormatException
InvalidOperationException
NotSupportedException
OutOfMemoryException
RankException
ArrayTypeMismatchException
InvalidCastException
-
Attachment
public Attachment(java.lang.String fileName) throws java.lang.Throwable, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, SerializationException, PlatformNotSupportedException, UnreachableException, IndexOutOfRangeException, FormatException, InvalidOperationException, NotSupportedException, OutOfMemoryException, RankException, ArrayTypeMismatchException, InvalidCastException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
ArgumentOutOfRangeException
SerializationException
PlatformNotSupportedException
UnreachableException
IndexOutOfRangeException
FormatException
InvalidOperationException
NotSupportedException
OutOfMemoryException
RankException
ArrayTypeMismatchException
InvalidCastException
-
-
Method Detail
-
getJCOAssemblyName
public java.lang.String getJCOAssemblyName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Assembly name- Specified by:
getJCOAssemblyName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOAssemblyName
in classAttachmentBase
- Returns:
- A
String
representing the Fullname of reflected Assembly
-
getJCOClassName
public java.lang.String getJCOClassName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name- Specified by:
getJCOClassName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOClassName
in classAttachmentBase
- Returns:
- A
String
representing the Fullname of reflected Class
-
getJCOObjectName
public java.lang.String getJCOObjectName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name used to build the object- Specified by:
getJCOObjectName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOObjectName
in classAttachmentBase
- Returns:
- A
String
representing the name used to allocated the object in CLR context
-
getJCOInstance
public java.lang.Object getJCOInstance()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class- Specified by:
getJCOInstance
in interfaceIJCOBridgeReflected
- Overrides:
getJCOInstance
in classAttachmentBase
- Returns:
- An
Object
representing the CLR instance of the instantiated Class
-
setJCOInstance
public void setJCOInstance(JCObject instance)
- Overrides:
setJCOInstance
in classAttachmentBase
-
getJCOType
public JCType getJCOType()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class Type- Specified by:
getJCOType
in interfaceIJCOBridgeReflected
- Overrides:
getJCOType
in classAttachmentBase
- Returns:
- A
JCType
representing the CLR Type of the instantiated Class
-
cast
public static Attachment cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflected
instance intoAttachment
, a cast assert is made to check if types are compatible.- Parameters:
from
-IJCOBridgeReflected
instance to be casted- Returns:
Attachment
instance- Throws:
java.lang.Throwable
- in case of error during cast operation
-
CreateAttachmentFromString
public static Attachment CreateAttachmentFromString(java.lang.String content, ContentType contentType) throws java.lang.Throwable, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, UnreachableException, IndexOutOfRangeException, FormatException, InvalidOperationException, NotSupportedException, RankException, ArrayTypeMismatchException, OutOfMemoryException
-
CreateAttachmentFromString
public static Attachment CreateAttachmentFromString(java.lang.String content, java.lang.String name, Encoding contentEncoding, java.lang.String mediaType) throws java.lang.Throwable, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, UnreachableException, IndexOutOfRangeException, FormatException, InvalidOperationException, NotSupportedException, RankException, ArrayTypeMismatchException, NullReferenceException, OutOfMemoryException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
ArgumentOutOfRangeException
PlatformNotSupportedException
UnreachableException
IndexOutOfRangeException
FormatException
InvalidOperationException
NotSupportedException
RankException
ArrayTypeMismatchException
NullReferenceException
OutOfMemoryException
-
CreateAttachmentFromString
public static Attachment CreateAttachmentFromString(java.lang.String content, java.lang.String name) throws java.lang.Throwable, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, UnreachableException, IndexOutOfRangeException, FormatException, InvalidOperationException, NotSupportedException, RankException, ArrayTypeMismatchException, NullReferenceException, OutOfMemoryException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
ArgumentOutOfRangeException
PlatformNotSupportedException
UnreachableException
IndexOutOfRangeException
FormatException
InvalidOperationException
NotSupportedException
RankException
ArrayTypeMismatchException
NullReferenceException
OutOfMemoryException
-
getContentDisposition
public ContentDisposition getContentDisposition() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getName
public java.lang.String getName() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setName
public void setName(java.lang.String Name) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, IndexOutOfRangeException, NullReferenceException, OutOfMemoryException, UnreachableException, FormatException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
PlatformNotSupportedException
NotSupportedException
ObjectDisposedException
InvalidOperationException
RankException
ArrayTypeMismatchException
IndexOutOfRangeException
NullReferenceException
OutOfMemoryException
UnreachableException
FormatException
-
getNameEncoding
public Encoding getNameEncoding() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setNameEncoding
public void setNameEncoding(Encoding NameEncoding) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException, FormatException, UnreachableException, ArgumentNullException, OutOfMemoryException
-
-