472,371 Members | 1,336 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,371 software developers and data experts.

passing custom object to webservice

Hi,

I am building an architecture that passes my custom objects to and from
webservices. (Our internal architecture requires me to use webservices to any
suggestion to use other remoting techniques are not feasible)

The question is;

Given that I have a Person object with a private set for id.
What is the recommended approac in passing that object to the web service
and still retain the value of id?

Getting the object from the webservice is no problem since I only use the
generated proxy class to achieve this.

Should I create a PersonData with public properties that I pass up to the
webservice or is there any other way?
This could be tricky since if the person object have a list och subitems the
PersonData would need that aswell creating a lot of code doing the same
thing...

I can not use interface because the webservice can not serialize that.

Any pointers to design guidelines or similar is appreciated.
(WCF is not an option right now)

Thanks in advance!

Regards Greger

--
----

Sep 20 '06 #1
9 3650
Greger,

It's a good question. You can pass Custom objects to and from Web Services.
In your case , the Person Object, should have Public Properties to depitct
the details of the Person Object

As long as the properties of the Person object are a primitive types, you
don't have to bother too much. Look at the sample below ...

Public Class Person
Public Property PersonId as Integer
Public Property PersonName as String
End Class

If atleast one of the Property of the Person object is a CusomCollection,
you need to consider lot of things before passing objects to and from web
services.
The following scenario has address collection inside Person Object

Public Class Person
Public Property PersonId as Integer
Public Property PersonName as String
Public Propery PersonAddress as AddressCollection
End Class

In such case the Custom Collections are not transmitted directly between web
services and clients. Meaning Custom Collections are passed as Array of
Objecs.
If if it is passed as Array of Objects, you loose tight coupling between
Person Object and AddressCollection property. In this scenario you really
need to figure out a way to maintain the tight coupling between Person Object
and AddressCollection Propery.
The way to do is to enable tight coupling with PersonId. Meaning
have a defintion for PersonId in the AddressCollection.

Please let me know if this reply is useful. If you need more information let
me know.
-
Thanks & Regards,
Sundar Narasimman

"Greger" wrote:
Hi,

I am building an architecture that passes my custom objects to and from
webservices. (Our internal architecture requires me to use webservices to any
suggestion to use other remoting techniques are not feasible)

The question is;

Given that I have a Person object with a private set for id.
What is the recommended approac in passing that object to the web service
and still retain the value of id?

Getting the object from the webservice is no problem since I only use the
generated proxy class to achieve this.

Should I create a PersonData with public properties that I pass up to the
webservice or is there any other way?
This could be tricky since if the person object have a list och subitems the
PersonData would need that aswell creating a lot of code doing the same
thing...

I can not use interface because the webservice can not serialize that.

Any pointers to design guidelines or similar is appreciated.
(WCF is not an option right now)

Thanks in advance!

Regards Greger

--
----
Sep 20 '06 #2
Hi Sundar,
Thanxs for the reply.
The gist of the question is when I send the proxy object to the server and
the server tries to recreate my object. It wont be able to set the,
intentionally, private set property. Leaving my object without essential data.

How can I have the framework deserialize my object correctly even though it
has a pricate set?

Regards Greger

--
----

"Sundar Narasimman" wrote:
Greger,

It's a good question. You can pass Custom objects to and from Web Services.
In your case , the Person Object, should have Public Properties to depitct
the details of the Person Object

As long as the properties of the Person object are a primitive types, you
don't have to bother too much. Look at the sample below ...

Public Class Person
Public Property PersonId as Integer
Public Property PersonName as String
End Class

If atleast one of the Property of the Person object is a CusomCollection,
you need to consider lot of things before passing objects to and from web
services.
The following scenario has address collection inside Person Object

Public Class Person
Public Property PersonId as Integer
Public Property PersonName as String
Public Propery PersonAddress as AddressCollection
End Class

In such case the Custom Collections are not transmitted directly between web
services and clients. Meaning Custom Collections are passed as Array of
Objecs.
If if it is passed as Array of Objects, you loose tight coupling between
Person Object and AddressCollection property. In this scenario you really
need to figure out a way to maintain the tight coupling between Person Object
and AddressCollection Propery.
The way to do is to enable tight coupling with PersonId. Meaning
have a defintion for PersonId in the AddressCollection.

Please let me know if this reply is useful. If you need more information let
me know.
-
Thanks & Regards,
Sundar Narasimman

"Greger" wrote:
Hi,

I am building an architecture that passes my custom objects to and from
webservices. (Our internal architecture requires me to use webservices to any
suggestion to use other remoting techniques are not feasible)

The question is;

Given that I have a Person object with a private set for id.
What is the recommended approac in passing that object to the web service
and still retain the value of id?

Getting the object from the webservice is no problem since I only use the
generated proxy class to achieve this.

Should I create a PersonData with public properties that I pass up to the
webservice or is there any other way?
This could be tricky since if the person object have a list och subitems the
PersonData would need that aswell creating a lot of code doing the same
thing...

I can not use interface because the webservice can not serialize that.

Any pointers to design guidelines or similar is appreciated.
(WCF is not an option right now)

Thanks in advance!

Regards Greger

--
----
Sep 20 '06 #3
Wow, I didn't even know this was possible... so, you can serialize
custom classes in .net and send them over the web? I am understanding
this right?

Ben

Sundar Narasimman wrote:
Greger,

It's a good question. You can pass Custom objects to and from Web Services.
In your case , the Person Object, should have Public Properties to depitct
the details of the Person Object

As long as the properties of the Person object are a primitive types, you
don't have to bother too much. Look at the sample below ...

Public Class Person
Public Property PersonId as Integer
Public Property PersonName as String
End Class

If atleast one of the Property of the Person object is a CusomCollection,
you need to consider lot of things before passing objects to and from web
services.
The following scenario has address collection inside Person Object

Public Class Person
Public Property PersonId as Integer
Public Property PersonName as String
Public Propery PersonAddress as AddressCollection
End Class

In such case the Custom Collections are not transmitted directly between web
services and clients. Meaning Custom Collections are passed as Array of
Objecs.
If if it is passed as Array of Objects, you loose tight coupling between
Person Object and AddressCollection property. In this scenario you really
need to figure out a way to maintain the tight coupling between Person Object
and AddressCollection Propery.
The way to do is to enable tight coupling with PersonId. Meaning
have a defintion for PersonId in the AddressCollection.

Please let me know if this reply is useful. If you need more information let
me know.
-
Thanks & Regards,
Sundar Narasimman

"Greger" wrote:
Hi,

I am building an architecture that passes my custom objects to and from
webservices. (Our internal architecture requires me to use webservices to any
suggestion to use other remoting techniques are not feasible)

The question is;

Given that I have a Person object with a private set for id.
What is the recommended approac in passing that object to the web service
and still retain the value of id?

Getting the object from the webservice is no problem since I only use the
generated proxy class to achieve this.

Should I create a PersonData with public properties that I pass up to the
webservice or is there any other way?
This could be tricky since if the person object have a list och subitems the
PersonData would need that aswell creating a lot of code doing the same
thing...

I can not use interface because the webservice can not serialize that.

Any pointers to design guidelines or similar is appreciated.
(WCF is not an option right now)

Thanks in advance!

Regards Greger

--
----
Sep 21 '06 #4
Hi Ben,

Yes you are right. You can serialize custom objects over the web . You can
even serialize custom object collections.

Thanks & Regards,
Sundar

"Ben Joyce" wrote:
Wow, I didn't even know this was possible... so, you can serialize
custom classes in .net and send them over the web? I am understanding
this right?

Ben

Sundar Narasimman wrote:
Greger,

It's a good question. You can pass Custom objects to and from Web Services.
In your case , the Person Object, should have Public Properties to depitct
the details of the Person Object

As long as the properties of the Person object are a primitive types, you
don't have to bother too much. Look at the sample below ...

Public Class Person
Public Property PersonId as Integer
Public Property PersonName as String
End Class

If atleast one of the Property of the Person object is a CusomCollection,
you need to consider lot of things before passing objects to and from web
services.
The following scenario has address collection inside Person Object

Public Class Person
Public Property PersonId as Integer
Public Property PersonName as String
Public Propery PersonAddress as AddressCollection
End Class

In such case the Custom Collections are not transmitted directly between web
services and clients. Meaning Custom Collections are passed as Array of
Objecs.
If if it is passed as Array of Objects, you loose tight coupling between
Person Object and AddressCollection property. In this scenario you really
need to figure out a way to maintain the tight coupling between Person Object
and AddressCollection Propery.
The way to do is to enable tight coupling with PersonId. Meaning
have a defintion for PersonId in the AddressCollection.

Please let me know if this reply is useful. If you need more information let
me know.
-
Thanks & Regards,
Sundar Narasimman

"Greger" wrote:
Hi,
>
I am building an architecture that passes my custom objects to and from
webservices. (Our internal architecture requires me to use webservices to any
suggestion to use other remoting techniques are not feasible)
>
The question is;
>
Given that I have a Person object with a private set for id.
What is the recommended approac in passing that object to the web service
and still retain the value of id?
>
Getting the object from the webservice is no problem since I only use the
generated proxy class to achieve this.
>
Should I create a PersonData with public properties that I pass up to the
webservice or is there any other way?
This could be tricky since if the person object have a list och subitems the
PersonData would need that aswell creating a lot of code doing the same
thing...
>
I can not use interface because the webservice can not serialize that.
>
Any pointers to design guidelines or similar is appreciated.
(WCF is not an option right now)
>
Thanks in advance!
>
Regards Greger
>
--
----
>

Sep 21 '06 #5
Hi Greger,

Niow I can understand your problem better.
There is a way to do that. You can have a Public method in the Remote Object
to update the private property/member of the class.

Your remote Person object can have public and private properties/method.
As you know only Public properties/methods would be serialized back and
forth between Web Services and the Client. Meaning at the client-side, the
proxy will reflect only Public Properties/Methods of the remote object.

You can still call the Public method of the proxy, that inturn will get
executed at the server-side to update your private property/member.

This is really possible.

Pls let me know whether this is useful or you need more information
regarding this
--
Thanks & Regards,
Sundar Narasimman
Technology Specialist
Microsoft .NET
"Greger" wrote:
Hi Sundar,
Thanxs for the reply.
The gist of the question is when I send the proxy object to the server and
the server tries to recreate my object. It wont be able to set the,
intentionally, private set property. Leaving my object without essential data.

How can I have the framework deserialize my object correctly even though it
has a pricate set?

Regards Greger

--
----

"Sundar Narasimman" wrote:
Greger,

It's a good question. You can pass Custom objects to and from Web Services.
In your case , the Person Object, should have Public Properties to depitct
the details of the Person Object

As long as the properties of the Person object are a primitive types, you
don't have to bother too much. Look at the sample below ...

Public Class Person
Public Property PersonId as Integer
Public Property PersonName as String
End Class

If atleast one of the Property of the Person object is a CusomCollection,
you need to consider lot of things before passing objects to and from web
services.
The following scenario has address collection inside Person Object

Public Class Person
Public Property PersonId as Integer
Public Property PersonName as String
Public Propery PersonAddress as AddressCollection
End Class

In such case the Custom Collections are not transmitted directly between web
services and clients. Meaning Custom Collections are passed as Array of
Objecs.
If if it is passed as Array of Objects, you loose tight coupling between
Person Object and AddressCollection property. In this scenario you really
need to figure out a way to maintain the tight coupling between Person Object
and AddressCollection Propery.
The way to do is to enable tight coupling with PersonId. Meaning
have a defintion for PersonId in the AddressCollection.

Please let me know if this reply is useful. If you need more information let
me know.
-
Thanks & Regards,
Sundar Narasimman

"Greger" wrote:
Hi,
>
I am building an architecture that passes my custom objects to and from
webservices. (Our internal architecture requires me to use webservices to any
suggestion to use other remoting techniques are not feasible)
>
The question is;
>
Given that I have a Person object with a private set for id.
What is the recommended approac in passing that object to the web service
and still retain the value of id?
>
Getting the object from the webservice is no problem since I only use the
generated proxy class to achieve this.
>
Should I create a PersonData with public properties that I pass up to the
webservice or is there any other way?
This could be tricky since if the person object have a list och subitems the
PersonData would need that aswell creating a lot of code doing the same
thing...
>
I can not use interface because the webservice can not serialize that.
>
Any pointers to design guidelines or similar is appreciated.
(WCF is not an option right now)
>
Thanks in advance!
>
Regards Greger
>
--
----
>
Sep 21 '06 #6
Hi,

Your information is quite useful and I have one more question to it.

I am having one custom object which I accept as a parameter of my webmethod.
This object is getting generated in my proxy class of the webservice at the
consumer-end.

Now, I am not getting any of my public methods of my custom object in
generated proxy class. I am not getting even constructors.

Actually I am having one private variable of the type "object" in my custom
class "WebResponse". Depending on the type of the value it contains, I am
having public methods to return it's value. but I am not getting any of these
public methods in the proxy class.

Is there any way out here!

Thanks,
Prerak

"Sundar Narasimman" wrote:
Hi Ben,

Yes you are right. You can serialize custom objects over the web . You can
even serialize custom object collections.

Thanks & Regards,
Sundar

"Ben Joyce" wrote:
Wow, I didn't even know this was possible... so, you can serialize
custom classes in .net and send them over the web? I am understanding
this right?

Ben

Sundar Narasimman wrote:
Greger,
>
It's a good question. You can pass Custom objects to and from Web Services.
In your case , the Person Object, should have Public Properties to depitct
the details of the Person Object
>
As long as the properties of the Person object are a primitive types, you
don't have to bother too much. Look at the sample below ...
>
Public Class Person
Public Property PersonId as Integer
Public Property PersonName as String
End Class
>
If atleast one of the Property of the Person object is a CusomCollection,
you need to consider lot of things before passing objects to and from web
services.
The following scenario has address collection inside Person Object
>
Public Class Person
Public Property PersonId as Integer
Public Property PersonName as String
Public Propery PersonAddress as AddressCollection
End Class
>
In such case the Custom Collections are not transmitted directly between web
services and clients. Meaning Custom Collections are passed as Array of
Objecs.
If if it is passed as Array of Objects, you loose tight coupling between
Person Object and AddressCollection property. In this scenario you really
need to figure out a way to maintain the tight coupling between Person Object
and AddressCollection Propery.
The way to do is to enable tight coupling with PersonId. Meaning
have a defintion for PersonId in the AddressCollection.
>
Please let me know if this reply is useful. If you need more information let
me know.
-
Thanks & Regards,
Sundar Narasimman
>
>
>
"Greger" wrote:
>
Hi,

I am building an architecture that passes my custom objects to and from
webservices. (Our internal architecture requires me to use webservices to any
suggestion to use other remoting techniques are not feasible)

The question is;

Given that I have a Person object with a private set for id.
What is the recommended approac in passing that object to the web service
and still retain the value of id?

Getting the object from the webservice is no problem since I only use the
generated proxy class to achieve this.

Should I create a PersonData with public properties that I pass up to the
webservice or is there any other way?
This could be tricky since if the person object have a list och subitems the
PersonData would need that aswell creating a lot of code doing the same
thing...

I can not use interface because the webservice can not serialize that.

Any pointers to design guidelines or similar is appreciated.
(WCF is not an option right now)

Thanks in advance!

Regards Greger

--
----
Feb 27 '07 #7
Custom objects are serialized with XmlSerializer, it only transport public
properties.
"Prerak V. Shah" <Prerak V. Sh**@discussions.microsoft.comwrote in message
news:9A**********************************@microsof t.com...
Hi,

Your information is quite useful and I have one more question to it.

I am having one custom object which I accept as a parameter of my
webmethod.
This object is getting generated in my proxy class of the webservice at
the
consumer-end.

Now, I am not getting any of my public methods of my custom object in
generated proxy class. I am not getting even constructors.

Actually I am having one private variable of the type "object" in my
custom
class "WebResponse". Depending on the type of the value it contains, I am
having public methods to return it's value. but I am not getting any of
these
public methods in the proxy class.

Is there any way out here!

Thanks,
Prerak

"Sundar Narasimman" wrote:
>Hi Ben,

Yes you are right. You can serialize custom objects over the web . You
can
even serialize custom object collections.

Thanks & Regards,
Sundar

"Ben Joyce" wrote:
Wow, I didn't even know this was possible... so, you can serialize
custom classes in .net and send them over the web? I am understanding
this right?

Ben

Sundar Narasimman wrote:
Greger,

It's a good question. You can pass Custom objects to and from Web
Services.
In your case , the Person Object, should have Public Properties to
depitct
the details of the Person Object

As long as the properties of the Person object are a primitive types,
you
don't have to bother too much. Look at the sample below ...

Public Class Person
Public Property PersonId as Integer
Public Property PersonName as String
End Class

If atleast one of the Property of the Person object is a
CusomCollection,
you need to consider lot of things before passing objects to and from
web
services.
The following scenario has address collection inside Person Object

Public Class Person
Public Property PersonId as Integer
Public Property PersonName as String
Public Propery PersonAddress as AddressCollection
End Class

In such case the Custom Collections are not transmitted directly
between web
services and clients. Meaning Custom Collections are passed as Array
of
Objecs.
If if it is passed as Array of Objects, you loose tight coupling
between
Person Object and AddressCollection property. In this scenario you
really
need to figure out a way to maintain the tight coupling between
Person Object
and AddressCollection Propery.
The way to do is to enable tight coupling with PersonId.
Meaning
have a defintion for PersonId in the AddressCollection.

Please let me know if this reply is useful. If you need more
information let
me know.
-
Thanks & Regards,
Sundar Narasimman

"Greger" wrote:

Hi,

I am building an architecture that passes my custom objects to and
from
webservices. (Our internal architecture requires me to use
webservices to any
suggestion to use other remoting techniques are not feasible)

The question is;

Given that I have a Person object with a private set for id.
What is the recommended approac in passing that object to the web
service
and still retain the value of id?

Getting the object from the webservice is no problem since I only
use the
generated proxy class to achieve this.

Should I create a PersonData with public properties that I pass up
to the
webservice or is there any other way?
This could be tricky since if the person object have a list och
subitems the
PersonData would need that aswell creating a lot of code doing the
same
thing...

I can not use interface because the webservice can not serialize
that.

Any pointers to design guidelines or similar is appreciated.
(WCF is not an option right now)

Thanks in advance!

Regards Greger

--
----


Mar 8 '07 #8
one of the alternatives:

http://replicrux.com/2008/10/20/pass...b-service.aspx

"Mariano Omar Rodriguez" wrote:
Custom objects are serialized with XmlSerializer, it only transport public
properties.
"Prerak V. Shah" <Prerak V. Sh**@discussions.microsoft.comwrote in message
news:9A**********************************@microsof t.com...
Hi,

Your information is quite useful and I have one more question to it.

I am having one custom object which I accept as a parameter of my
webmethod.
This object is getting generated in my proxy class of the webservice at
the
consumer-end.

Now, I am not getting any of my public methods of my custom object in
generated proxy class. I am not getting even constructors.

Actually I am having one private variable of the type "object" in my
custom
class "WebResponse". Depending on the type of the value it contains, I am
having public methods to return it's value. but I am not getting any of
these
public methods in the proxy class.

Is there any way out here!

Thanks,
Prerak

"Sundar Narasimman" wrote:
Hi Ben,

Yes you are right. You can serialize custom objects over the web . You
can
even serialize custom object collections.

Thanks & Regards,
Sundar

"Ben Joyce" wrote:

Wow, I didn't even know this was possible... so, you can serialize
custom classes in .net and send them over the web? I am understanding
this right?

Ben

Sundar Narasimman wrote:
Greger,
>
It's a good question. You can pass Custom objects to and from Web
Services.
In your case , the Person Object, should have Public Properties to
depitct
the details of the Person Object
>
As long as the properties of the Person object are a primitive types,
you
don't have to bother too much. Look at the sample below ...
>
Public Class Person
Public Property PersonId as Integer
Public Property PersonName as String
End Class
>
If atleast one of the Property of the Person object is a
CusomCollection,
you need to consider lot of things before passing objects to and from
web
services.
The following scenario has address collection inside Person Object
>
Public Class Person
Public Property PersonId as Integer
Public Property PersonName as String
Public Propery PersonAddress as AddressCollection
End Class
>
In such case the Custom Collections are not transmitted directly
between web
services and clients. Meaning Custom Collections are passed as Array
of
Objecs.
If if it is passed as Array of Objects, you loose tight coupling
between
Person Object and AddressCollection property. In this scenario you
really
need to figure out a way to maintain the tight coupling between
Person Object
and AddressCollection Propery.
The way to do is to enable tight coupling with PersonId.
Meaning
have a defintion for PersonId in the AddressCollection.
>
Please let me know if this reply is useful. If you need more
information let
me know.
-
Thanks & Regards,
Sundar Narasimman
>
>
>
"Greger" wrote:
>
Hi,

I am building an architecture that passes my custom objects to and
from
webservices. (Our internal architecture requires me to use
webservices to any
suggestion to use other remoting techniques are not feasible)

The question is;

Given that I have a Person object with a private set for id.
What is the recommended approac in passing that object to the web
service
and still retain the value of id?

Getting the object from the webservice is no problem since I only
use the
generated proxy class to achieve this.

Should I create a PersonData with public properties that I pass up
to the
webservice or is there any other way?
This could be tricky since if the person object have a list och
subitems the
PersonData would need that aswell creating a lot of code doing the
same
thing...

I can not use interface because the webservice can not serialize
that.

Any pointers to design guidelines or similar is appreciated.
(WCF is not an option right now)

Thanks in advance!

Regards Greger

--
----


Oct 26 '08 #9

"Kin" <Ki*@discussions.microsoft.comwrote in message
news:41**********************************@microsof t.com...
one of the alternatives:

http://replicrux.com/2008/10/20/pass...b-service.aspx
This is totally unnecessary. Simply copy the properties from one object to
the other.

In WCF you can simply choose to reuse the types.

--
John Saunders | MVP - Connected System Developer

Oct 26 '08 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: hellrazor | last post by:
Hi there, I'm very new to dot net programming and webservices programming. I've managed to create simple webservices so far. Here's my problem: -I've been given a project which needs to...
4
by: Sahil Malik [MVP] | last post by:
Okay so now I understand (surprised though) - that WebServices can indeed pass ByRef/ref parameters. All I have to do is mark an integer parameter of a WebMethod as "ref". Funnily enough, this is...
5
by: mtv | last post by:
Hi all, I have the following code: ================================ Webservice side: public class MyWS: WebService { private myLib.DataObject curDataObject;
12
by: Noel | last post by:
Hello, I'm currently developing a web service that retrieves data from an employee table. I would like to send and retrieve a custom employee class to/from the webservice. I have currently coded...
1
by: rival | last post by:
Hi. I've a single solution with many projects. I'm using VS2003 and framework 1.1 1. Data project - contains UserData class, inheriting from DataSet, and setting up constants and columns...
8
by: =?Utf-8?B?UmF2aQ==?= | last post by:
Hi, I'm trying to pass values of different data-types to a web-service. I thought it would be easier to box these values and pass them as a System.object parameter, like public void...
2
by: =?Utf-8?B?Y3Nz?= | last post by:
I am new to ASP.net webservice and have a quesiton. Is is possible to pass custom object to a web service (using VB 2005)? My custom object will look like this Public Class Myclass Public...
0
by: Naresh1 | last post by:
What is WebLogic Admin Training? WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge required to effectively administer and manage Oracle...
0
by: antdb | last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine In the overall architecture, a new "hyper-convergence" concept was proposed, which integrated multiple engines and...
0
hi
by: WisdomUfot | last post by:
It's an interesting question you've got about how Gmail hides the HTTP referrer when a link in an email is clicked. While I don't have the specific technical details, Gmail likely implements measures...
0
by: Carina712 | last post by:
Setting background colors for Excel documents can help to improve the visual appeal of the document and make it easier to read and understand. Background colors can be used to highlight important...
0
by: Rahul1995seven | last post by:
Introduction: In the realm of programming languages, Python has emerged as a powerhouse. With its simplicity, versatility, and robustness, Python has gained popularity among beginners and experts...
2
by: Ricardo de Mila | last post by:
Dear people, good afternoon... I have a form in msAccess with lots of controls and a specific routine must be triggered if the mouse_down event happens in any control. Than I need to discover what...
1
by: ezappsrUS | last post by:
Hi, I wonder if someone knows where I am going wrong below. I have a continuous form and two labels where only one would be visible depending on the checkbox being checked or not. Below is the...
0
by: jack2019x | last post by:
hello, Is there code or static lib for hook swapchain present? I wanna hook dxgi swapchain present for dx11 and dx9.
0
DizelArs
by: DizelArs | last post by:
Hi all) Faced with a problem, element.click() event doesn't work in Safari browser. Tried various tricks like emulating touch event through a function: let clickEvent = new Event('click', {...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.