Registrar<TRegistrable>.GetHandlerForObject Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
GetHandlerForObject<TOut>(Object) | |
GetHandlerForObject<TOut>(Object, Object[]) |
GetHandlerForObject<TOut>(Object)
- Source:
- Registrar.cs
- Source:
- Registrar.cs
public:
generic <typename TOut>
where TOut : class, TRegistrable TOut GetHandlerForObject(System::Object ^ obj);
public TOut GetHandlerForObject<TOut> (object obj) where TOut : class, TRegistrable;
member this.GetHandlerForObject : obj -> 'Out
Public Function GetHandlerForObject(Of TOut As {Class, TRegistrable}) (obj As Object) As TOut
Type Parameters
- TOut
Parameters
- obj
- Object
Returns
TOut
Applies to
GetHandlerForObject<TOut>(Object, Object[])
- Source:
- Registrar.cs
- Source:
- Registrar.cs
public:
generic <typename TOut>
where TOut : class, TRegistrable TOut GetHandlerForObject(System::Object ^ obj, ... cli::array <System::Object ^> ^ args);
public TOut GetHandlerForObject<TOut> (object obj, params object[] args) where TOut : class, TRegistrable;
member this.GetHandlerForObject : obj * obj[] -> 'Out
Public Function GetHandlerForObject(Of TOut As {Class, TRegistrable}) (obj As Object, ParamArray args As Object()) As TOut
Type Parameters
- TOut
Parameters
- obj
- Object
- args
- Object[]
Returns
TOut
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.